From d52fa528c488b88aeeae18bfe606aeb1c7b6f7ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Sat, 19 Jan 2008 00:01:44 +0000 Subject: [PATCH] Removed copies of GEGL headers from GIMP source, depend on installed headers instead. GIMP trunk still depends on GEGL trunk but we're moving towards a time when GIMMP can depend on a GEGL tarball instead. * app/gegl/gegl/gegl-operation-filter.h: * app/gegl/gegl/gegl-operation-point-filter.h: * app/gegl/gegl/gegl-operation-sink.h: * app/gegl/gegl/gegl-operation-source.h: * app/gegl/gegl/gegl-operation.h: * app/gegl/gegl/gegl-types.h: * app/gegl/gegl/: removed. * app/gegl/gimpoperationcolorbalance.h: * app/gegl/gimpoperationcolorize.h: * app/gegl/gimpoperationdesaturate.h: * app/gegl/gimpoperationhuesaturation.h: * app/gegl/gimpoperationlevels.h: * app/gegl/gimpoperationposterize.h: * app/gegl/gimpoperationthreshold.h: * app/gegl/gimpoperationtilesink.h: * app/gegl/gimpoperationtilesource.h: modified path to parent class' header file. svn path=/trunk/; revision=24653 --- ChangeLog | 25 +++ app/gegl/gegl/gegl-operation-filter.h | 54 ----- app/gegl/gegl/gegl-operation-point-filter.h | 54 ----- app/gegl/gegl/gegl-operation-sink.h | 57 ------ app/gegl/gegl/gegl-operation-source.h | 54 ----- app/gegl/gegl/gegl-operation.h | 208 -------------------- app/gegl/gegl/gegl-types.h | 30 --- app/gegl/gimpoperationcolorbalance.h | 2 +- app/gegl/gimpoperationcolorize.h | 2 +- app/gegl/gimpoperationdesaturate.h | 2 +- app/gegl/gimpoperationhuesaturation.h | 2 +- app/gegl/gimpoperationlevels.h | 2 +- app/gegl/gimpoperationposterize.h | 2 +- app/gegl/gimpoperationthreshold.h | 2 +- app/gegl/gimpoperationtilesink.h | 2 +- app/gegl/gimpoperationtilesource.h | 2 +- 16 files changed, 34 insertions(+), 466 deletions(-) delete mode 100644 app/gegl/gegl/gegl-operation-filter.h delete mode 100644 app/gegl/gegl/gegl-operation-point-filter.h delete mode 100644 app/gegl/gegl/gegl-operation-sink.h delete mode 100644 app/gegl/gegl/gegl-operation-source.h delete mode 100644 app/gegl/gegl/gegl-operation.h delete mode 100644 app/gegl/gegl/gegl-types.h diff --git a/ChangeLog b/ChangeLog index 6f2f1e7e80..e65a167aab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +2008-01-18 Øyvind Kolås + + Removed copies of GEGL headers from GIMP source, depend on installed + headers instead. GIMP trunk still depends on GEGL trunk but we're + moving towards a time when GIMMP can depend on a GEGL tarball instead. + + * app/gegl/gegl/gegl-operation-filter.h: + * app/gegl/gegl/gegl-operation-point-filter.h: + * app/gegl/gegl/gegl-operation-sink.h: + * app/gegl/gegl/gegl-operation-source.h: + * app/gegl/gegl/gegl-operation.h: + * app/gegl/gegl/gegl-types.h: + * app/gegl/gegl/: removed. + + * app/gegl/gimpoperationcolorbalance.h: + * app/gegl/gimpoperationcolorize.h: + * app/gegl/gimpoperationdesaturate.h: + * app/gegl/gimpoperationhuesaturation.h: + * app/gegl/gimpoperationlevels.h: + * app/gegl/gimpoperationposterize.h: + * app/gegl/gimpoperationthreshold.h: + * app/gegl/gimpoperationtilesink.h: + * app/gegl/gimpoperationtilesource.h: modified path to parent class' + header file. + 2008-01-18 Bill Skaggs * app/base/lut-funcs.c (equalize_lut_func): Don't diff --git a/app/gegl/gegl/gegl-operation-filter.h b/app/gegl/gegl/gegl-operation-filter.h deleted file mode 100644 index 733e24a605..0000000000 --- a/app/gegl/gegl/gegl-operation-filter.h +++ /dev/null @@ -1,54 +0,0 @@ -/* This file is part of GEGL - * - * GEGL is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * GEGL is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GEGL; if not, see . - * - * Copyright 2006 Øyvind Kolås - */ - -#ifndef __GEGL_OPERATION_FILTER_H__ -#define __GEGL_OPERATION_FILTER_H__ - -#include "gegl-operation.h" - -G_BEGIN_DECLS - -#define GEGL_TYPE_OPERATION_FILTER (gegl_operation_filter_get_type ()) -#define GEGL_OPERATION_FILTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_OPERATION_FILTER, GeglOperationFilter)) -#define GEGL_OPERATION_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEGL_TYPE_OPERATION_FILTER, GeglOperationFilterClass)) -#define GEGL_IS_OPERATION_FILTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_OPERATION_FILTER)) -#define GEGL_IS_OPERATION_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEGL_TYPE_OPERATION_FILTER)) -#define GEGL_OPERATION_FILTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEGL_TYPE_OPERATION_FILTER, GeglOperationFilterClass)) - -typedef struct _GeglOperationFilter GeglOperationFilter; -struct _GeglOperationFilter -{ - GeglOperation parent_instance; -}; - -typedef struct _GeglOperationFilterClass GeglOperationFilterClass; -struct _GeglOperationFilterClass -{ - GeglOperationClass parent_class; - - gboolean (* process) (GeglOperation *self, - GeglBuffer *input, - GeglBuffer *output, - const GeglRectangle *result); -}; - -GType gegl_operation_filter_get_type (void) G_GNUC_CONST; - -G_END_DECLS - -#endif diff --git a/app/gegl/gegl/gegl-operation-point-filter.h b/app/gegl/gegl/gegl-operation-point-filter.h deleted file mode 100644 index dabd178bc2..0000000000 --- a/app/gegl/gegl/gegl-operation-point-filter.h +++ /dev/null @@ -1,54 +0,0 @@ -/* This file is part of GEGL - * - * GEGL is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * GEGL is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GEGL; if not, see . - * - * Copyright 2006 Øyvind Kolås - */ - -#ifndef __GEGL_OPERATION_POINT_FILTER_H__ -#define __GEGL_OPERATION_POINT_FILTER_H__ - -#include "gegl-operation-filter.h" - -G_BEGIN_DECLS - -#define GEGL_TYPE_OPERATION_POINT_FILTER (gegl_operation_point_filter_get_type ()) -#define GEGL_OPERATION_POINT_FILTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_OPERATION_POINT_FILTER, GeglOperationPointFilter)) -#define GEGL_OPERATION_POINT_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEGL_TYPE_OPERATION_POINT_FILTER, GeglOperationPointFilterClass)) -#define GEGL_IS_OPERATION_POINT_FILTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_OPERATION_POINT_FILTER)) -#define GEGL_IS_OPERATION_POINT_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEGL_TYPE_OPERATION_POINT_FILTER)) -#define GEGL_OPERATION_POINT_FILTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEGL_TYPE_OPERATION_POINT_FILTER, GeglOperationPointFilterClass)) - -typedef struct _GeglOperationPointFilter GeglOperationPointFilter; -struct _GeglOperationPointFilter -{ - GeglOperationFilter parent_instance; -}; - -typedef struct _GeglOperationPointFilterClass GeglOperationPointFilterClass; -struct _GeglOperationPointFilterClass -{ - GeglOperationFilterClass parent_class; - - gboolean (* process) (GeglOperation *self, /* for parameters */ - void *in_buf, /* input buffer */ - void *out_buf, /* output buffer */ - glong samples); /* number of samples */ -}; - -GType gegl_operation_point_filter_get_type (void) G_GNUC_CONST; - -G_END_DECLS - -#endif diff --git a/app/gegl/gegl/gegl-operation-sink.h b/app/gegl/gegl/gegl-operation-sink.h deleted file mode 100644 index c51d507224..0000000000 --- a/app/gegl/gegl/gegl-operation-sink.h +++ /dev/null @@ -1,57 +0,0 @@ -/* This file is part of GEGL - * - * GEGL is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * GEGL is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GEGL; if not, see . - * - * Copyright 2006 Øyvind Kolås - */ - -#ifndef __GEGL_OPERATION_SINK_H__ -#define __GEGL_OPERATION_SINK_H__ - -#include "gegl-operation.h" - -G_BEGIN_DECLS - -#define GEGL_TYPE_OPERATION_SINK (gegl_operation_sink_get_type ()) -#define GEGL_OPERATION_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_OPERATION_SINK, GeglOperationSink)) -#define GEGL_OPERATION_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEGL_TYPE_OPERATION_SINK, GeglOperationSinkClass)) -#define GEGL_IS_OPERATION_SINK(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_OPERATION_SINK)) -#define GEGL_IS_OPERATION_SINK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEGL_TYPE_OPERATION_SINK)) -#define GEGL_OPERATION_SINK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEGL_TYPE_OPERATION_SINK, GeglOperationSinkClass)) - -typedef struct _GeglOperationSink GeglOperationSink; -struct _GeglOperationSink -{ - GeglOperation parent_instance; -}; - -typedef struct _GeglOperationSinkClass GeglOperationSinkClass; -struct _GeglOperationSinkClass -{ - GeglOperationClass parent_class; - - gboolean needs_full; - - gboolean (* process) (GeglOperation *self, - GeglBuffer *input, - const GeglRectangle *result); -}; - -GType gegl_operation_sink_get_type (void) G_GNUC_CONST; - -gboolean gegl_operation_sink_needs_full (GeglOperation *operation); - -G_END_DECLS - -#endif diff --git a/app/gegl/gegl/gegl-operation-source.h b/app/gegl/gegl/gegl-operation-source.h deleted file mode 100644 index ad1d8f9f3a..0000000000 --- a/app/gegl/gegl/gegl-operation-source.h +++ /dev/null @@ -1,54 +0,0 @@ -/* This file is part of GEGL - * - * GEGL is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * GEGL is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GEGL; if not, see . - * - * Copyright 2006 Øyvind Kolås - */ - -#ifndef __GEGL_OPERATION_SOURCE_H__ -#define __GEGL_OPERATION_SOURCE_H__ - -#include "gegl-operation.h" - -G_BEGIN_DECLS - -#define GEGL_TYPE_OPERATION_SOURCE (gegl_operation_source_get_type ()) -#define GEGL_OPERATION_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_OPERATION_SOURCE, GeglOperationSource)) -#define GEGL_OPERATION_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEGL_TYPE_OPERATION_SOURCE, GeglOperationSourceClass)) -#define GEGL_IS_OPERATION_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_OPERATION_SOURCE, GeglOperationSource)) -#define GEGL_IS_OPERATION_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEGL_TYPE_OPERATION_SOURCE, GeglOperationSourceClass)) -#define GEGL_OPERATION_SOURCE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEGL_TYPE_OPERATION_SOURCE, GeglOperationSourceClass)) - -typedef struct _GeglOperationSource GeglOperationSource; -struct _GeglOperationSource -{ - GeglOperation parent_instance; -}; - -typedef struct _GeglOperationSourceClass GeglOperationSourceClass; -struct _GeglOperationSourceClass -{ - GeglOperationClass parent_class; - - gboolean (* process) (GeglOperation *self, - GeglNodeContext *context, - GeglBuffer *output, - const GeglRectangle *result); -}; - -GType gegl_operation_source_get_type (void) G_GNUC_CONST; - -G_END_DECLS - -#endif diff --git a/app/gegl/gegl/gegl-operation.h b/app/gegl/gegl/gegl-operation.h deleted file mode 100644 index f9e382c83e..0000000000 --- a/app/gegl/gegl/gegl-operation.h +++ /dev/null @@ -1,208 +0,0 @@ -/* This file is part of GEGL - * - * GEGL is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * GEGL is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with GEGL; if not, see . - * - * Copyright 2003 Calvin Williamson - * 2005, 2006 Øyvind Kolås - */ - -#ifndef __GEGL_OPERATION_H__ -#define __GEGL_OPERATION_H__ - -#include -#include -#include "gegl-types.h" -#include "gegl-buffer.h" - -G_BEGIN_DECLS - -#define GEGL_TYPE_OPERATION (gegl_operation_get_type ()) -#define GEGL_OPERATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_OPERATION, GeglOperation)) -#define GEGL_OPERATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEGL_TYPE_OPERATION, GeglOperationClass)) -#define GEGL_IS_OPERATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_OPERATION)) -#define GEGL_IS_OPERATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEGL_TYPE_OPERATION)) -#define GEGL_OPERATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEGL_TYPE_OPERATION, GeglOperationClass)) - -typedef struct _GeglOperationClass GeglOperationClass; - -struct _GeglOperation -{ - GObject parent_instance; - - /*< private >*/ - GeglNode *node; /* the node that this operation object is communicated - with through */ -}; - -struct _GeglOperationClass -{ - GObjectClass parent_class; - - const gchar *name; /* name used to refer to this type of - operation in GEGL */ - gchar *description; /* textual description of the operation */ - char *categories; /* a colon seperated list of categories */ - - - gboolean no_cache; /* do not create a cache for this operation */ - - /* attach this operation with a GeglNode, override this if you are creating a - * GeglGraph, it is already defined for Filters/Sources/Composers. - */ - void (*attach) (GeglOperation *operation); - - /* called as a refresh before any of the region needs getters, used in - * the area base class for instance. - */ - void (*tickle) (GeglOperation *operation); - - /* prepare the node for processing (all properties will be set) override this - * if you are creating a meta operation (using the node as a GeglGraph). - */ - void (*prepare) (GeglOperation *operation); - - /* Returns a bounding rectangle for the data that is defined by this op. (is - * already implemented in GeglOperationPointFilter and - * GeglOperationPointComposer, GeglOperationAreaFilter base classes. - */ - GeglRectangle (*get_defined_region) (GeglOperation *operation); - - /* Computes the region in output (same affected rect assumed for all outputs) - * when a given region has changed on an input. Used to aggregate dirt in the - * graph. A default implementation of this, if not provided should probably - * be to report that the entire defined region is dirtied. - */ - GeglRectangle (*compute_affected_region) (GeglOperation *operation, - const gchar *input_pad, - const GeglRectangle *input_region); - - /* computes the rectangle needed to be correctly computed in a buffer - * on the named input_pad, for a given result rectangle - */ - GeglRectangle (*compute_input_request) (GeglOperation *operation, - const gchar *input_pad, - const GeglRectangle *roi); - - /* Adjust result rect, adapts the rectangle used for computing results. - * (useful for global operations like contrast stretching, as well as - * file loaders to force caching of the full raster). - */ - GeglRectangle (*adjust_result_region) (GeglOperation *operation, - const GeglRectangle *roi); - - /* Returns the node providing data for a specific location - */ - GeglNode* (*detect) (GeglOperation *operation, - gint x, - gint y); - - gboolean (*process) (GeglOperation *operation, - GeglNodeContext *context, - const gchar *output_pad, - const GeglRectangle *result_rect); -}; - -/* returns|registers the gtype for GeglOperation */ -GType gegl_operation_get_type (void) G_GNUC_CONST; - -/* retrieves the bounding box of a connected input */ -GeglRectangle * gegl_operation_source_get_defined_region (GeglOperation *operation, - const gchar *pad_name); - - -/* sets the ROI needed to be computed on one of the sources */ -void gegl_operation_set_source_region (GeglOperation *operation, - gpointer context_id, - const gchar *pad_name, - const GeglRectangle *region); - - -/* virtual method invokers that depends only on the set properties of a - * operation|node - */ - -/* retrieves the node providing data to a named input pad */ -GeglNode * gegl_operation_get_source_node (GeglOperation *operation, - const gchar *pad_name); -GeglRectangle gegl_operation_compute_affected_region (GeglOperation *operation, - const gchar *input_pad, - const GeglRectangle *input_region); -GeglRectangle gegl_operation_get_defined_region (GeglOperation *operation); -GeglRectangle gegl_operation_adjust_result_region (GeglOperation *operation, - const GeglRectangle *roi); - -GeglRectangle gegl_operation_compute_input_request(GeglOperation *operation, - const gchar *input_pad, - const GeglRectangle *roi); - -GeglNode *gegl_operation_detect (GeglOperation *operation, - gint x, - gint y); - - -/* virtual method invokers that change behavior based on the roi being computed, - * needs a context_id being based that is used for storing context data. - */ - -void gegl_operation_attach (GeglOperation *operation, - GeglNode *node); -void gegl_operation_prepare (GeglOperation *operation); -gboolean gegl_operation_process (GeglOperation *operation, - GeglNodeContext *context, - const gchar *output_pad, - const GeglRectangle *result_rect); - -gchar ** gegl_list_operations (guint *n_operations_p); -GParamSpec ** gegl_list_properties (const gchar *operation_type, - guint *n_properties_p); - -/* set the name of an operation, transforms all occurences of "_" into "-" */ -void gegl_operation_class_set_name (GeglOperationClass *operation, - const gchar *name); - -/* create a pad for a specified property for this operation, this method is - * to be called from the attach method of operations, most operations do not - * have to care about this since a super class like filter, sink, source or - * composer already does so. - */ -void gegl_operation_create_pad (GeglOperation *operation, - GParamSpec *param_spec); - -/* specify the bablformat for a pad on this operation (XXX: document when - * this is legal, at the moment, only used internally in some ops,. but might - * turn into a global mechanism) */ -void gegl_operation_set_format (GeglOperation *operation, - const gchar *pad_name, - const Babl *format); -const Babl * gegl_operation_get_format (GeglOperation *operation, - const gchar *pad_name); - -/* Used to look up the gtype when changing the type of operation associated - * a GeglNode using just a string with the registered name. - */ -GType gegl_operation_gtype_from_name (const gchar *name); - -gboolean gegl_operation_calc_source_regions (GeglOperation *operation, - gpointer context_id); - -void gegl_operation_vector_prop_changed (GeglVector *vector, - GeglOperation *operation); - -void gegl_extension_handler_cleanup (void); - -void gegl_operation_gtype_cleanup (void); - -G_END_DECLS - -#endif /* __GEGL_OPERATION_H__ */ diff --git a/app/gegl/gegl/gegl-types.h b/app/gegl/gegl/gegl-types.h deleted file mode 100644 index ad0e1ecdfa..0000000000 --- a/app/gegl/gegl/gegl-types.h +++ /dev/null @@ -1,30 +0,0 @@ -/* GIMP - The GNU Image Manipulation Program - * Copyright (C) 1995 Spencer Kimball and Peter Mattis - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ - -#ifndef __UGLY_GEGL_TYPES_H__ -#define __UGLY_GEGL_TYPES_H__ - - -/* FIXME: typedefs needed by the headers copied here. - * They are supposed to be removed at some point. - */ -typedef struct _GeglOperation GeglOperation; -typedef struct _GeglNodeContext GeglNodeContext; - - -#endif /* __UGLY_GEGL_TYPES_H__ */ diff --git a/app/gegl/gimpoperationcolorbalance.h b/app/gegl/gimpoperationcolorbalance.h index ee2545ac6b..b0101c871d 100644 --- a/app/gegl/gimpoperationcolorbalance.h +++ b/app/gegl/gimpoperationcolorbalance.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_COLOR_BALANCE_H__ -#include "gegl/gegl-operation-point-filter.h" +#include #define GIMP_TYPE_OPERATION_COLOR_BALANCE (gimp_operation_color_balance_get_type ()) diff --git a/app/gegl/gimpoperationcolorize.h b/app/gegl/gimpoperationcolorize.h index 527d6a5cc6..29cb5e98e5 100644 --- a/app/gegl/gimpoperationcolorize.h +++ b/app/gegl/gimpoperationcolorize.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_COLORIZE_H__ -#include "gegl/gegl-operation-point-filter.h" +#include #define GIMP_TYPE_OPERATION_COLORIZE (gimp_operation_colorize_get_type ()) diff --git a/app/gegl/gimpoperationdesaturate.h b/app/gegl/gimpoperationdesaturate.h index ef56f8363a..5cd201f9b6 100644 --- a/app/gegl/gimpoperationdesaturate.h +++ b/app/gegl/gimpoperationdesaturate.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_DESATURATE_H__ -#include "gegl/gegl-operation-point-filter.h" +#include #define GIMP_TYPE_OPERATION_DESATURATE (gimp_operation_desaturate_get_type ()) diff --git a/app/gegl/gimpoperationhuesaturation.h b/app/gegl/gimpoperationhuesaturation.h index 95e99a3523..70cd24c659 100644 --- a/app/gegl/gimpoperationhuesaturation.h +++ b/app/gegl/gimpoperationhuesaturation.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_HUE_SATURATION_H__ -#include "gegl/gegl-operation-point-filter.h" +#include #define GIMP_TYPE_OPERATION_HUE_SATURATION (gimp_operation_hue_saturation_get_type ()) diff --git a/app/gegl/gimpoperationlevels.h b/app/gegl/gimpoperationlevels.h index 1191228d32..f5fd73e411 100644 --- a/app/gegl/gimpoperationlevels.h +++ b/app/gegl/gimpoperationlevels.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_LEVELS_H__ -#include "gegl/gegl-operation-point-filter.h" +#include #define GIMP_TYPE_OPERATION_LEVELS (gimp_operation_levels_get_type ()) diff --git a/app/gegl/gimpoperationposterize.h b/app/gegl/gimpoperationposterize.h index 7e8a22e8dc..a67c5f7640 100644 --- a/app/gegl/gimpoperationposterize.h +++ b/app/gegl/gimpoperationposterize.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_POSTERIZE_H__ -#include "gegl/gegl-operation-point-filter.h" +#include #define GIMP_TYPE_OPERATION_POSTERIZE (gimp_operation_posterize_get_type ()) diff --git a/app/gegl/gimpoperationthreshold.h b/app/gegl/gimpoperationthreshold.h index 4cecf6fbe2..a91b02e846 100644 --- a/app/gegl/gimpoperationthreshold.h +++ b/app/gegl/gimpoperationthreshold.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_THRESHOLD_H__ -#include "gegl/gegl-operation-point-filter.h" +#include #define GIMP_TYPE_OPERATION_THRESHOLD (gimp_operation_threshold_get_type ()) diff --git a/app/gegl/gimpoperationtilesink.h b/app/gegl/gimpoperationtilesink.h index aab5e02e02..2f43197461 100644 --- a/app/gegl/gimpoperationtilesink.h +++ b/app/gegl/gimpoperationtilesink.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_TILE_SINK_H__ -#include "gegl/gegl-operation-sink.h" +#include #define GIMP_TYPE_OPERATION_TILE_SINK (gimp_operation_tile_sink_get_type ()) diff --git a/app/gegl/gimpoperationtilesource.h b/app/gegl/gimpoperationtilesource.h index 6c0df7f37d..6d64a98017 100644 --- a/app/gegl/gimpoperationtilesource.h +++ b/app/gegl/gimpoperationtilesource.h @@ -23,7 +23,7 @@ #define __GIMP_OPERATION_TILE_SOURCE_H__ -#include "gegl/gegl-operation-source.h" +#include #define GIMP_TYPE_OPERATION_TILE_SOURCE (gimp_operation_tile_source_get_type ())