mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
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:
parent
24acc89f23
commit
74a17aa216
3 changed files with 20 additions and 3 deletions
|
@ -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>
|
2008-06-04 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
* configure.in: depend on GEGL >= 0.0.17, add check for
|
* configure.in: depend on GEGL >= 0.0.17, add check for
|
||||||
|
|
9
INSTALL
9
INSTALL
|
@ -28,9 +28,12 @@ header files installed.
|
||||||
1. You need to have installed a recent version of pkg-config available
|
1. You need to have installed a recent version of pkg-config available
|
||||||
from http://www.freedesktop.org/software/pkgconfig/.
|
from http://www.freedesktop.org/software/pkgconfig/.
|
||||||
|
|
||||||
2. You need to have GEGL version 0.0.16 or newer. You can get it from
|
2. You need to have GEGL version 0.0.17 or newer and babl version
|
||||||
http://gegl.org/ or check it out from the subversion repository:
|
0.0.21 or newer. You can get it from http://gegl.org/ or check
|
||||||
http://svn.gnome.org/svn/gegl/trunk
|
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
|
3. You need to have installed GTK+ version 2.12.1 or newer. GIMP
|
||||||
also need a recent versions of GLib (>= 2.16.1) and Pango (>= 1.18.0).
|
also need a recent versions of GLib (>= 2.16.1) and Pango (>= 1.18.0).
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
|
|
||||||
#include "gegl-types.h"
|
#include "gegl-types.h"
|
||||||
|
|
||||||
|
#include "base/tile.h"
|
||||||
|
|
||||||
#include "gimp-gegl.h"
|
#include "gimp-gegl.h"
|
||||||
#include "gimpoperationcolorbalance.h"
|
#include "gimpoperationcolorbalance.h"
|
||||||
#include "gimpoperationcolorize.h"
|
#include "gimpoperationcolorize.h"
|
||||||
|
@ -41,6 +43,11 @@
|
||||||
void
|
void
|
||||||
gimp_gegl_init (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_COLOR_BALANCE);
|
||||||
g_type_class_ref (GIMP_TYPE_OPERATION_COLORIZE);
|
g_type_class_ref (GIMP_TYPE_OPERATION_COLORIZE);
|
||||||
g_type_class_ref (GIMP_TYPE_OPERATION_CURVES);
|
g_type_class_ref (GIMP_TYPE_OPERATION_CURVES);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue