mirror of https://github.com/GNOME/gimp.git
Move the display render buf size #defines to gimpdisplayshell-render.h
This commit is contained in:
parent
7a6fe273b7
commit
750c11f001
|
@ -19,6 +19,10 @@
|
|||
#define __GIMP_DISPLAY_SHELL_RENDER_H__
|
||||
|
||||
|
||||
#define GIMP_DISPLAY_RENDER_BUF_WIDTH 256
|
||||
#define GIMP_DISPLAY_RENDER_BUF_HEIGHT 256
|
||||
|
||||
|
||||
void gimp_display_shell_render_init (Gimp *gimp);
|
||||
void gimp_display_shell_render_exit (Gimp *gimp);
|
||||
|
||||
|
|
|
@ -67,6 +67,7 @@
|
|||
#include "gimpdisplayshell-filter.h"
|
||||
#include "gimpdisplayshell-handlers.h"
|
||||
#include "gimpdisplayshell-progress.h"
|
||||
#include "gimpdisplayshell-render.h"
|
||||
#include "gimpdisplayshell-scale.h"
|
||||
#include "gimpdisplayshell-scroll.h"
|
||||
#include "gimpdisplayshell-selection.h"
|
||||
|
|
|
@ -40,10 +40,6 @@
|
|||
#define FUNSCALEX(s,x) ((x) / (s)->scale_x)
|
||||
#define FUNSCALEY(s,y) ((y) / (s)->scale_y)
|
||||
|
||||
/* the size of the display render buffer */
|
||||
#define GIMP_DISPLAY_RENDER_BUF_WIDTH 256
|
||||
#define GIMP_DISPLAY_RENDER_BUF_HEIGHT 256
|
||||
|
||||
|
||||
#define GIMP_TYPE_DISPLAY_SHELL (gimp_display_shell_get_type ())
|
||||
#define GIMP_DISPLAY_SHELL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_DISPLAY_SHELL, GimpDisplayShell))
|
||||
|
|
Loading…
Reference in New Issue