app/display/Makefile.am removed. It was a wrapper around nothing since we

2001-11-30  Michael Natterer  <mitch@gimp.org>

	* app/display/Makefile.am
	* app/display/gximage.[ch]: removed. It was a wrapper around
	nothing since we use GdkRGB.

	* app/display/gimpdisplayshell-render.[ch]: added the render
	buf size defines here, added the #if 0'ed display filter stuff
	and the actual GdkRGB render stuff here too.

	* app/display/gimpdisplayshell.[ch]: added shell->render_buf as
	replacement for the global gximage buffer, renamed shell->scroll_gc
	to shell->render_gc and use it all over the place when rendering
	image data.

	* app/display/gimpdisplayshell-callbacks.c
	* app/display/gimpdisplayshell-scroll.c: changed accordingly.

	* app/gui/gui.c: don't call gximage init/exit stuff.
This commit is contained in:
Michael Natterer
2001-11-30 18:23:49 +00:00
committed by Michael Natterer
parent bf860fd1af
commit 57157b4041
13 changed files with 193 additions and 343 deletions

View File

@ -88,7 +88,8 @@ struct _GimpDisplayShell
gchar cursor_format_str[CURSOR_FORMAT_LENGTH];
GtkWidget *cancelbutton; /* cancel button */
GdkGC *scroll_gc; /* GC for scrolling */
guchar *render_buf; /* buffer for rendering the image */
GdkGC *render_gc; /* GC for rendering the image */
gint icon_size; /* size of the icon pixmap */
guint icon_idle_id; /* ID of the idle-function */