updated GEGL version and also mention babl.

2008-06-04  Sven Neumann  <sven@gimp.org>

	* INSTALL: updated GEGL version and also mention babl.

	* app/gegl/gimp-gegl.c (gimp_gegl_init): configure the GEGL tile
	size to match the GIMP tile size.

svn path=/trunk/; revision=25887
This commit is contained in:
Sven Neumann 2008-06-04 12:49:18 +00:00 committed by Sven Neumann
parent 24acc89f23
commit 74a17aa216
3 changed files with 20 additions and 3 deletions

View file

@ -1,3 +1,10 @@
2008-06-04 Sven Neumann <sven@gimp.org>
* INSTALL: updated GEGL version and also mention babl.
* app/gegl/gimp-gegl.c (gimp_gegl_init): configure the GEGL tile
size to match the GIMP tile size.
2008-06-04 Michael Natterer <mitch@gimp.org>
* configure.in: depend on GEGL >= 0.0.17, add check for

View file

@ -28,8 +28,11 @@ header files installed.
1. You need to have installed a recent version of pkg-config available
from http://www.freedesktop.org/software/pkgconfig/.
2. You need to have GEGL version 0.0.16 or newer. You can get it from
http://gegl.org/ or check it out from the subversion repository:
2. You need to have GEGL version 0.0.17 or newer and babl version
0.0.21 or newer. You can get it from http://gegl.org/ or check
it out from the subversion repository:
http://svn.gnome.org/svn/babl/trunk
http://svn.gnome.org/svn/gegl/trunk
3. You need to have installed GTK+ version 2.12.1 or newer. GIMP

View file

@ -25,6 +25,8 @@
#include "gegl-types.h"
#include "base/tile.h"
#include "gimp-gegl.h"
#include "gimpoperationcolorbalance.h"
#include "gimpoperationcolorize.h"
@ -41,6 +43,11 @@
void
gimp_gegl_init (void)
{
g_object_set (gegl_config (),
"tile-width", TILE_WIDTH,
"tile-height", TILE_HEIGHT,
NULL);
g_type_class_ref (GIMP_TYPE_OPERATION_COLOR_BALANCE);
g_type_class_ref (GIMP_TYPE_OPERATION_COLORIZE);
g_type_class_ref (GIMP_TYPE_OPERATION_CURVES);