gegl r1896 - in trunk: . bindings/rgegl gegl operations/blur operations/color operations/core operations/enhance operations/generated operations/io operations/meta operations/render operations/svg operations/transparency operations/workshop operations/workshop/generated



Author: ok
Date: Wed Jan 23 00:59:39 2008
New Revision: 1896
URL: http://svn.gnome.org/viewvc/gegl?rev=1896&view=rev

Log:
	* gegl/Makefile.am: added old-chant.h to list of sources.
	* gegl/gegl-old-chant.h: created a copy of gegl-chant.h
	* operations/*/*.c: include gegl-old-chant.h instead of gegl-chant.h


Added:
   trunk/gegl/gegl-old-chant.h
      - copied unchanged from r1892, /trunk/gegl/gegl-chant.h
Modified:
   trunk/ChangeLog
   trunk/bindings/rgegl/ChangeLog
   trunk/gegl/Makefile.am
   trunk/operations/blur/box-blur.c
   trunk/operations/blur/gaussian-blur.c
   trunk/operations/color/brightness-contrast.c
   trunk/operations/color/contrast-curve.c
   trunk/operations/color/invert.c
   trunk/operations/color/levels.c
   trunk/operations/color/mono-mixer.c
   trunk/operations/color/stretch-contrast.c
   trunk/operations/color/threshold.c
   trunk/operations/color/value-invert.c
   trunk/operations/color/whitebalance.c
   trunk/operations/core/convert-format.c
   trunk/operations/enhance/bilateral-filter.c
   trunk/operations/enhance/snn-mean.c
   trunk/operations/generated/math.rb
   trunk/operations/generated/other-blend.rb
   trunk/operations/generated/svg-12-blend.rb
   trunk/operations/generated/svg-12-porter-duff.rb
   trunk/operations/io/display.c
   trunk/operations/io/ff-load.c
   trunk/operations/io/jpg-load.c
   trunk/operations/io/load-buffer.c
   trunk/operations/io/load.c
   trunk/operations/io/magick-load.c
   trunk/operations/io/pixbuf.c
   trunk/operations/io/png-load.c
   trunk/operations/io/png-save.c
   trunk/operations/io/raw-load.c
   trunk/operations/io/save-buffer.c
   trunk/operations/io/save-pixbuf.c
   trunk/operations/io/svg-load.c
   trunk/operations/meta/dropshadow.c
   trunk/operations/meta/layer.c
   trunk/operations/meta/tonemap.c
   trunk/operations/meta/unsharp-mask.c
   trunk/operations/render/FractalExplorer.c
   trunk/operations/render/checkerboard.c
   trunk/operations/render/color.c
   trunk/operations/render/introspect.c
   trunk/operations/render/noise.c
   trunk/operations/render/text.c
   trunk/operations/svg/svg_huerotate.c
   trunk/operations/svg/svg_luminancetoalpha.c
   trunk/operations/svg/svg_matrix.c
   trunk/operations/svg/svg_saturate.c
   trunk/operations/transparency/opacity.c
   trunk/operations/workshop/box-max.c
   trunk/operations/workshop/box-min.c
   trunk/operations/workshop/box-percentile.c
   trunk/operations/workshop/c2g.c
   trunk/operations/workshop/demosaic-bimedian.c
   trunk/operations/workshop/demosaic-simple.c
   trunk/operations/workshop/difference-of-gaussians.c
   trunk/operations/workshop/disc-percentile.c
   trunk/operations/workshop/ff-save.c
   trunk/operations/workshop/generated/blend.rb
   trunk/operations/workshop/gluas.c
   trunk/operations/workshop/grey.c
   trunk/operations/workshop/gtk-display.c
   trunk/operations/workshop/hstack.c
   trunk/operations/workshop/kuwahara-max.c
   trunk/operations/workshop/kuwahara-min.c
   trunk/operations/workshop/kuwahara.c
   trunk/operations/workshop/line-profile.c
   trunk/operations/workshop/mandelbrot.c
   trunk/operations/workshop/max-envelope.c
   trunk/operations/workshop/mblur.c
   trunk/operations/workshop/min-envelope.c
   trunk/operations/workshop/rawbayer-load.c
   trunk/operations/workshop/snn-percentile.c
   trunk/operations/workshop/stress.c

Modified: trunk/gegl/Makefile.am
==============================================================================
--- trunk/gegl/Makefile.am	(original)
+++ trunk/gegl/Makefile.am	Wed Jan 23 00:59:39 2008
@@ -27,7 +27,8 @@
 	gegl-plugin.h			\
 	gegl-chant.h			\
 	gegl-instrument.h		\
-	gegl-module.h
+	gegl-module.h			\
+	gegl-old-chant.h
 
 libgegl_ GEGL_API_VERSION@_la_SOURCES = $(GEGL_sources) $(GEGL_public_headers)
 

Modified: trunk/operations/blur/box-blur.c
==============================================================================
--- trunk/operations/blur/box-blur.c	(original)
+++ trunk/operations/blur/box-blur.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 
 #define GEGL_CHANT_AREA_FILTER
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void hor_blur (GeglBuffer *src,
                       GeglBuffer *dst,

Modified: trunk/operations/blur/gaussian-blur.c
==============================================================================
--- trunk/operations/blur/gaussian-blur.c	(original)
+++ trunk/operations/blur/gaussian-blur.c	Wed Jan 23 00:59:39 2008
@@ -38,7 +38,7 @@
 #define GEGL_CHANT_CATEGORIES      "blur"
 
 #define GEGL_CHANT_AREA_FILTER
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <math.h>
 #include <stdio.h>

Modified: trunk/operations/color/brightness-contrast.c
==============================================================================
--- trunk/operations/color/brightness-contrast.c	(original)
+++ trunk/operations/color/brightness-contrast.c	Wed Jan 23 00:59:39 2008
@@ -39,7 +39,7 @@
 /* The name of the operation (with lower case here, _ and - are interchangeable
  * when used by GEGL. */
 #define GEGL_CHANT_SELF         "brightness-contrast.c"
-/* we need to specify the name of the source file for gegl-chant.height  to
+/* we need to specify the name of the source file for gegl-old-chant.height  to
  * do it's magic.
  */
 
@@ -69,7 +69,7 @@
 /* gegl-chant, uses the properties defined at the top, and the configuration
  * in the preceding lines to generate a GObject plug-in.
  */
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void prepare (GeglOperation *operation)
 {

Modified: trunk/operations/color/contrast-curve.c
==============================================================================
--- trunk/operations/color/contrast-curve.c	(original)
+++ trunk/operations/color/contrast-curve.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_POINT_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void prepare (GeglOperation *operation)
 {

Modified: trunk/operations/color/invert.c
==============================================================================
--- trunk/operations/color/invert.c	(original)
+++ trunk/operations/color/invert.c	Wed Jan 23 00:59:39 2008
@@ -24,7 +24,7 @@
 #define GEGL_CHANT_DESCRIPTION   "Inverts the components (except alpha), the result is the corresponding \"negative\" image."
 #define GEGL_CHANT_SELF          "invert.c"
 #define GEGL_CHANT_CATEGORIES    "color"
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static gboolean
 process (GeglOperation *op,

Modified: trunk/operations/color/levels.c
==============================================================================
--- trunk/operations/color/levels.c	(original)
+++ trunk/operations/color/levels.c	Wed Jan 23 00:59:39 2008
@@ -33,7 +33,7 @@
 
 #define GEGL_CHANT_CATEGORIES   "color"
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 /* GeglOperationPointFilter gives us a linear buffer to operate on
  * in our requested pixel format

Modified: trunk/operations/color/mono-mixer.c
==============================================================================
--- trunk/operations/color/mono-mixer.c	(original)
+++ trunk/operations/color/mono-mixer.c	Wed Jan 23 00:59:39 2008
@@ -32,7 +32,7 @@
 
 #define GEGL_CHANT_FILTER
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static gboolean
 process (GeglOperation       *operation,

Modified: trunk/operations/color/stretch-contrast.c
==============================================================================
--- trunk/operations/color/stretch-contrast.c	(original)
+++ trunk/operations/color/stretch-contrast.c	Wed Jan 23 00:59:39 2008
@@ -28,7 +28,7 @@
                                   of the super class */
 #define GEGL_CHANT_CATEGORIES      "color:enhance"
 #define GEGL_CHANT_PREPARE
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static gboolean
 inner_process (gdouble        min,

Modified: trunk/operations/color/threshold.c
==============================================================================
--- trunk/operations/color/threshold.c	(original)
+++ trunk/operations/color/threshold.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_CATEGORIES      "color"
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void prepare (GeglOperation *operation)
 {

Modified: trunk/operations/color/value-invert.c
==============================================================================
--- trunk/operations/color/value-invert.c	(original)
+++ trunk/operations/color/value-invert.c	Wed Jan 23 00:59:39 2008
@@ -40,7 +40,7 @@
 #define GEGL_CHANT_SELF          "value-invert.c"
 #define GEGL_CHANT_CATEGORIES    "color"
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static gboolean
 process (GeglOperation *op,

Modified: trunk/operations/color/whitebalance.c
==============================================================================
--- trunk/operations/color/whitebalance.c	(original)
+++ trunk/operations/color/whitebalance.c	Wed Jan 23 00:59:39 2008
@@ -34,7 +34,7 @@
 #define GEGL_CHANT_CATEGORIES   "color"
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void prepare (GeglOperation *operation)
 {

Modified: trunk/operations/core/convert-format.c
==============================================================================
--- trunk/operations/core/convert-format.c	(original)
+++ trunk/operations/core/convert-format.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_POINT_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void prepare (GeglOperation *operation)
 {

Modified: trunk/operations/enhance/bilateral-filter.c
==============================================================================
--- trunk/operations/enhance/bilateral-filter.c	(original)
+++ trunk/operations/enhance/bilateral-filter.c	Wed Jan 23 00:59:39 2008
@@ -32,7 +32,7 @@
 #define GEGL_CHANT_CATEGORIES      "misc"
 
 #define GEGL_CHANT_AREA_FILTER
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void

Modified: trunk/operations/enhance/snn-mean.c
==============================================================================
--- trunk/operations/enhance/snn-mean.c	(original)
+++ trunk/operations/enhance/snn-mean.c	Wed Jan 23 00:59:39 2008
@@ -33,7 +33,7 @@
 
 #define GEGL_CHANT_AREA_FILTER
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void

Modified: trunk/operations/generated/math.rb
==============================================================================
--- trunk/operations/generated/math.rb	(original)
+++ trunk/operations/generated/math.rb	Wed Jan 23 00:59:39 2008
@@ -47,7 +47,7 @@
 #define GEGL_CHANT_POINT_COMPOSER
 #define GEGL_CHANT_PREPARE
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 
 #include <math.h>
 #ifdef _MSC_VER

Modified: trunk/operations/generated/other-blend.rb
==============================================================================
--- trunk/operations/generated/other-blend.rb	(original)
+++ trunk/operations/generated/other-blend.rb	Wed Jan 23 00:59:39 2008
@@ -117,7 +117,7 @@
 #define GEGL_CHANT_PREPARE
 #define GEGL_CHANT_CLASS_INIT
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 "
     file.write file_head2
     file.write "

Modified: trunk/operations/generated/svg-12-blend.rb
==============================================================================
--- trunk/operations/generated/svg-12-blend.rb	(original)
+++ trunk/operations/generated/svg-12-blend.rb	Wed Jan 23 00:59:39 2008
@@ -136,7 +136,7 @@
 #define GEGL_CHANT_POINT_COMPOSER
 #define GEGL_CHANT_PREPARE
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 "
     file.write file_head2
     file.write "
@@ -196,7 +196,7 @@
 #define GEGL_CHANT_POINT_COMPOSER
 #define GEGL_CHANT_PREPARE
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 "
     file.write file_head2
     file.write "
@@ -261,7 +261,7 @@
 #define GEGL_CHANT_POINT_COMPOSER
 #define GEGL_CHANT_PREPARE
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 #include <math.h>
 "
     file.write file_head2
@@ -326,7 +326,7 @@
 #define GEGL_CHANT_POINT_COMPOSER
 #define GEGL_CHANT_PREPARE
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 "
     file.write file_head2
     file.write "

Modified: trunk/operations/generated/svg-12-porter-duff.rb
==============================================================================
--- trunk/operations/generated/svg-12-porter-duff.rb	(original)
+++ trunk/operations/generated/svg-12-porter-duff.rb	Wed Jan 23 00:59:39 2008
@@ -126,7 +126,7 @@
 #define GEGL_CHANT_POINT_COMPOSER
 #define GEGL_CHANT_PREPARE
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 "
     file.write file_head2
     file.write "

Modified: trunk/operations/io/display.c
==============================================================================
--- trunk/operations/io/display.c	(original)
+++ trunk/operations/io/display.c	Wed Jan 23 00:59:39 2008
@@ -35,7 +35,7 @@
 #define GEGL_CHANT_SELF        "display.c"
 #define GEGL_CHANT_CATEGORIES  "output"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <SDL.h>
 #include <signal.h>

Modified: trunk/operations/io/ff-load.c
==============================================================================
--- trunk/operations/io/ff-load.c	(original)
+++ trunk/operations/io/ff-load.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_CATEGORIES     "input:video"
 #define GEGL_CHANT_INIT
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <errno.h>
 #include <ffmpeg/avformat.h>

Modified: trunk/operations/io/jpg-load.c
==============================================================================
--- trunk/operations/io/jpg-load.c	(original)
+++ trunk/operations/io/jpg-load.c	Wed Jan 23 00:59:39 2008
@@ -27,7 +27,7 @@
 #define GEGL_CHANT_SELF            "jpg-load.c"
 #define GEGL_CHANT_CATEGORIES      "hidden"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <stdio.h>
 #include <jpeglib.h>
 

Modified: trunk/operations/io/load-buffer.c
==============================================================================
--- trunk/operations/io/load-buffer.c	(original)
+++ trunk/operations/io/load-buffer.c	Wed Jan 23 00:59:39 2008
@@ -26,7 +26,7 @@
 #define GEGL_CHANT_SELF         "load-buffer.c"
 #define GEGL_CHANT_CATEGORIES   "programming:input"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include "gegl-buffer.h"
 #include "graph/gegl-node-context.h"
 

Modified: trunk/operations/io/load.c
==============================================================================
--- trunk/operations/io/load.c	(original)
+++ trunk/operations/io/load.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_SELF            "load.c"
 #define GEGL_CHANT_CATEGORIES      "meta:input"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <stdio.h>
 
 typedef struct _Priv Priv;

Modified: trunk/operations/io/magick-load.c
==============================================================================
--- trunk/operations/io/magick-load.c	(original)
+++ trunk/operations/io/magick-load.c	Wed Jan 23 00:59:39 2008
@@ -25,7 +25,7 @@
 
 #define GEGL_CHANT_SELF            "magick-load.c"
 #define GEGL_CHANT_CATEGORIES      "hidden"
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <stdio.h>
 
 /* FIXME: this should not be neccesary to implement this operation */

Modified: trunk/operations/io/pixbuf.c
==============================================================================
--- trunk/operations/io/pixbuf.c	(original)
+++ trunk/operations/io/pixbuf.c	Wed Jan 23 00:59:39 2008
@@ -25,7 +25,7 @@
 
 #define GEGL_CHANT_SELF            "pixbuf.c"
 #define GEGL_CHANT_CATEGORIES      "programming:input"
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <gdk-pixbuf/gdk-pixbuf.h>
 #include <gdk-pixbuf/gdk-pixdata.h>

Modified: trunk/operations/io/png-load.c
==============================================================================
--- trunk/operations/io/png-load.c	(original)
+++ trunk/operations/io/png-load.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_SELF            "png-load.c"
 #define GEGL_CHANT_CATEGORIES      "hidden"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <png.h>
 

Modified: trunk/operations/io/png-save.c
==============================================================================
--- trunk/operations/io/png-save.c	(original)
+++ trunk/operations/io/png-save.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_SELF        "png-save.c"
 #define GEGL_CHANT_CATEGORIES      "output"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <png.h>
 

Modified: trunk/operations/io/raw-load.c
==============================================================================
--- trunk/operations/io/raw-load.c	(original)
+++ trunk/operations/io/raw-load.c	Wed Jan 23 00:59:39 2008
@@ -28,7 +28,7 @@
 #define GEGL_CHANT_SELF            "raw-load.c"
 #define GEGL_CHANT_CATEGORIES      "hidden"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif

Modified: trunk/operations/io/save-buffer.c
==============================================================================
--- trunk/operations/io/save-buffer.c	(original)
+++ trunk/operations/io/save-buffer.c	Wed Jan 23 00:59:39 2008
@@ -25,7 +25,7 @@
 #define GEGL_CHANT_SELF        "save-buffer.c"
 #define GEGL_CHANT_CATEGORIES  "programming:output"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static gboolean
 process (GeglOperation       *operation,

Modified: trunk/operations/io/save-pixbuf.c
==============================================================================
--- trunk/operations/io/save-pixbuf.c	(original)
+++ trunk/operations/io/save-pixbuf.c	Wed Jan 23 00:59:39 2008
@@ -27,7 +27,7 @@
 #define GEGL_CHANT_SELF            "save-pixbuf.c"
 #define GEGL_CHANT_CATEGORIES      "programming:output"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <gdk-pixbuf/gdk-pixbuf.h>
 
 static gboolean

Modified: trunk/operations/io/svg-load.c
==============================================================================
--- trunk/operations/io/svg-load.c	(original)
+++ trunk/operations/io/svg-load.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_SELF            "svg-load.c"
 #define GEGL_CHANT_CATEGORIES      "input" /* not hidden because it has extra API */
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <cairo.h>
 #include <librsvg/rsvg.h>

Modified: trunk/operations/meta/dropshadow.c
==============================================================================
--- trunk/operations/meta/dropshadow.c	(original)
+++ trunk/operations/meta/dropshadow.c	Wed Jan 23 00:59:39 2008
@@ -33,7 +33,7 @@
 #define GEGL_CHANT_SELF            "dropshadow.c"
 #define GEGL_CHANT_CATEGORIES      "meta:effects"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 typedef struct _Priv Priv;
 struct _Priv

Modified: trunk/operations/meta/layer.c
==============================================================================
--- trunk/operations/meta/layer.c	(original)
+++ trunk/operations/meta/layer.c	Wed Jan 23 00:59:39 2008
@@ -36,7 +36,7 @@
 #define GEGL_CHANT_SELF            "layer.c"
 #define GEGL_CHANT_CATEGORIES      "meta"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <glib/gprintf.h>
 
 typedef struct _Priv Priv;

Modified: trunk/operations/meta/tonemap.c
==============================================================================
--- trunk/operations/meta/tonemap.c	(original)
+++ trunk/operations/meta/tonemap.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_SELF            "tonemap.c"
 #define GEGL_CHANT_CATEGORIES      "meta:enhance"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 typedef struct _Priv Priv;
 struct _Priv

Modified: trunk/operations/meta/unsharp-mask.c
==============================================================================
--- trunk/operations/meta/unsharp-mask.c	(original)
+++ trunk/operations/meta/unsharp-mask.c	Wed Jan 23 00:59:39 2008
@@ -28,7 +28,7 @@
 #define GEGL_CHANT_SELF            "unsharp-mask.c"
 #define GEGL_CHANT_CATEGORIES      "meta:enhance"
 #define GEGL_CHANT_CLASS_INIT
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 typedef struct _Priv Priv;
 struct _Priv

Modified: trunk/operations/render/FractalExplorer.c
==============================================================================
--- trunk/operations/render/FractalExplorer.c	(original)
+++ trunk/operations/render/FractalExplorer.c	Wed Jan 23 00:59:39 2008
@@ -62,7 +62,7 @@
 #define GEGL_CHANT_PREPARE
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 #include <stdio.h>
 

Modified: trunk/operations/render/checkerboard.c
==============================================================================
--- trunk/operations/render/checkerboard.c	(original)
+++ trunk/operations/render/checkerboard.c	Wed Jan 23 00:59:39 2008
@@ -36,7 +36,7 @@
 
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void
 prepare (GeglOperation *operation)

Modified: trunk/operations/render/color.c
==============================================================================
--- trunk/operations/render/color.c	(original)
+++ trunk/operations/render/color.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_CLASS_INIT
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void
 prepare (GeglOperation *operation)

Modified: trunk/operations/render/introspect.c
==============================================================================
--- trunk/operations/render/introspect.c	(original)
+++ trunk/operations/render/introspect.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 
 #define GEGL_CHANT_SOURCE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include "gegl-dot.h" /* XXX: internal header file */
 
 #include <stdio.h>

Modified: trunk/operations/render/noise.c
==============================================================================
--- trunk/operations/render/noise.c	(original)
+++ trunk/operations/render/noise.c	Wed Jan 23 00:59:39 2008
@@ -34,7 +34,7 @@
 #define GEGL_CHANT_PREPARE
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include "perlin/perlin.c"
 #include "perlin/perlin.h"
 

Modified: trunk/operations/render/text.c
==============================================================================
--- trunk/operations/render/text.c	(original)
+++ trunk/operations/render/text.c	Wed Jan 23 00:59:39 2008
@@ -45,7 +45,7 @@
 #define GEGL_CHANT_PREPARE
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <cairo.h>
 #include <pango/pango-attributes.h>

Modified: trunk/operations/svg/svg_huerotate.c
==============================================================================
--- trunk/operations/svg/svg_huerotate.c	(original)
+++ trunk/operations/svg/svg_huerotate.c	Wed Jan 23 00:59:39 2008
@@ -15,7 +15,7 @@
 #define GEGL_CHANT_CATEGORIES    "compositors:svgfilter"
 #define GEGL_CHANT_SELF          "svg_huerotate.c"
 #define GEGL_CHANT_PREPARE
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <math.h>
 #include <stdlib.h>

Modified: trunk/operations/svg/svg_luminancetoalpha.c
==============================================================================
--- trunk/operations/svg/svg_luminancetoalpha.c	(original)
+++ trunk/operations/svg/svg_luminancetoalpha.c	Wed Jan 23 00:59:39 2008
@@ -15,7 +15,7 @@
 #define GEGL_CHANT_CATEGORIES    "compositors:svgfilter"
 #define GEGL_CHANT_SELF          "svg_luminancetoalpha.c"
 #define GEGL_CHANT_PREPARE
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <math.h>
 #include <stdlib.h>

Modified: trunk/operations/svg/svg_matrix.c
==============================================================================
--- trunk/operations/svg/svg_matrix.c	(original)
+++ trunk/operations/svg/svg_matrix.c	Wed Jan 23 00:59:39 2008
@@ -15,7 +15,7 @@
 #define GEGL_CHANT_CATEGORIES    "compositors:svgfilter"
 #define GEGL_CHANT_SELF          "svg_matrix.c"
 #define GEGL_CHANT_PREPARE
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <math.h>
 #include <stdlib.h>

Modified: trunk/operations/svg/svg_saturate.c
==============================================================================
--- trunk/operations/svg/svg_saturate.c	(original)
+++ trunk/operations/svg/svg_saturate.c	Wed Jan 23 00:59:39 2008
@@ -15,7 +15,7 @@
 #define GEGL_CHANT_CATEGORIES    "compositors:svgfilter"
 #define GEGL_CHANT_SELF          "svg_saturate.c"
 #define GEGL_CHANT_PREPARE
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <math.h>
 #include <stdlib.h>

Modified: trunk/operations/transparency/opacity.c
==============================================================================
--- trunk/operations/transparency/opacity.c	(original)
+++ trunk/operations/transparency/opacity.c	Wed Jan 23 00:59:39 2008
@@ -25,7 +25,7 @@
 #define GEGL_CHANT_SELF            "opacity.c"
 #define GEGL_CHANT_CATEGORIES      "transparency"
 #define GEGL_CHANT_PREPARE
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void prepare (GeglOperation *self)
 {

Modified: trunk/operations/workshop/box-max.c
==============================================================================
--- trunk/operations/workshop/box-max.c	(original)
+++ trunk/operations/workshop/box-max.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void hor_max (GeglBuffer *src,
                      GeglBuffer *dst,

Modified: trunk/operations/workshop/box-min.c
==============================================================================
--- trunk/operations/workshop/box-min.c	(original)
+++ trunk/operations/workshop/box-min.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void hor_min (GeglBuffer *src,
                      GeglBuffer *dst,

Modified: trunk/operations/workshop/box-percentile.c
==============================================================================
--- trunk/operations/workshop/box-percentile.c	(original)
+++ trunk/operations/workshop/box-percentile.c	Wed Jan 23 00:59:39 2008
@@ -34,7 +34,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void median (GeglBuffer *src,
                     GeglBuffer *dst,

Modified: trunk/operations/workshop/c2g.c
==============================================================================
--- trunk/operations/workshop/c2g.c	(original)
+++ trunk/operations/workshop/c2g.c	Wed Jan 23 00:59:39 2008
@@ -36,7 +36,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 #define sq(a) ((a)*(a))
 

Modified: trunk/operations/workshop/demosaic-bimedian.c
==============================================================================
--- trunk/operations/workshop/demosaic-bimedian.c	(original)
+++ trunk/operations/workshop/demosaic-bimedian.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 
 #define GEGL_CHANT_AREA_FILTER
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void
 demosaic (GeglChantOperation *op,

Modified: trunk/operations/workshop/demosaic-simple.c
==============================================================================
--- trunk/operations/workshop/demosaic-simple.c	(original)
+++ trunk/operations/workshop/demosaic-simple.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void
 demosaic (GeglChantOperation *op,

Modified: trunk/operations/workshop/difference-of-gaussians.c
==============================================================================
--- trunk/operations/workshop/difference-of-gaussians.c	(original)
+++ trunk/operations/workshop/difference-of-gaussians.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_META
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 typedef struct _Priv Priv;
 struct _Priv

Modified: trunk/operations/workshop/disc-percentile.c
==============================================================================
--- trunk/operations/workshop/disc-percentile.c	(original)
+++ trunk/operations/workshop/disc-percentile.c	Wed Jan 23 00:59:39 2008
@@ -34,7 +34,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void median (GeglBuffer *src,

Modified: trunk/operations/workshop/ff-save.c
==============================================================================
--- trunk/operations/workshop/ff-save.c	(original)
+++ trunk/operations/workshop/ff-save.c	Wed Jan 23 00:59:39 2008
@@ -32,7 +32,7 @@
 #define GEGL_CHANT_INIT
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include "ffmpeg/avformat.h"
 
 typedef struct

Modified: trunk/operations/workshop/generated/blend.rb
==============================================================================
--- trunk/operations/workshop/generated/blend.rb	(original)
+++ trunk/operations/workshop/generated/blend.rb	Wed Jan 23 00:59:39 2008
@@ -59,7 +59,7 @@
 #define GEGL_CHANT_POINT_COMPOSER
 #define GEGL_CHANT_PREPARE
 
-#include \"gegl-chant.h\"
+#include \"gegl-old-chant.h\"
 #include \"math.h\"
 
 static void prepare (GeglOperation *self)

Modified: trunk/operations/workshop/gluas.c
==============================================================================
--- trunk/operations/workshop/gluas.c	(original)
+++ trunk/operations/workshop/gluas.c	Wed Jan 23 00:59:39 2008
@@ -48,7 +48,7 @@
 #define GEGL_CHANT_CLASS_INIT
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <lua.h>
 #include <lualib.h>

Modified: trunk/operations/workshop/grey.c
==============================================================================
--- trunk/operations/workshop/grey.c	(original)
+++ trunk/operations/workshop/grey.c	Wed Jan 23 00:59:39 2008
@@ -27,7 +27,7 @@
 #define GEGL_CHANT_POINT_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static void prepare (GeglOperation *operation)
 {

Modified: trunk/operations/workshop/gtk-display.c
==============================================================================
--- trunk/operations/workshop/gtk-display.c	(original)
+++ trunk/operations/workshop/gtk-display.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_FILTER
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 #include <gtk/gtk.h>
 

Modified: trunk/operations/workshop/hstack.c
==============================================================================
--- trunk/operations/workshop/hstack.c	(original)
+++ trunk/operations/workshop/hstack.c	Wed Jan 23 00:59:39 2008
@@ -29,7 +29,7 @@
 #define GEGL_CHANT_CLASS_INIT
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void prepare (GeglOperation *operation)

Modified: trunk/operations/workshop/kuwahara-max.c
==============================================================================
--- trunk/operations/workshop/kuwahara-max.c	(original)
+++ trunk/operations/workshop/kuwahara-max.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void

Modified: trunk/operations/workshop/kuwahara-min.c
==============================================================================
--- trunk/operations/workshop/kuwahara-min.c	(original)
+++ trunk/operations/workshop/kuwahara-min.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void

Modified: trunk/operations/workshop/kuwahara.c
==============================================================================
--- trunk/operations/workshop/kuwahara.c	(original)
+++ trunk/operations/workshop/kuwahara.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void

Modified: trunk/operations/workshop/line-profile.c
==============================================================================
--- trunk/operations/workshop/line-profile.c	(original)
+++ trunk/operations/workshop/line-profile.c	Wed Jan 23 00:59:39 2008
@@ -36,7 +36,7 @@
 #define GEGL_CHANT_FILTER
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <cairo.h>
 
 static gfloat

Modified: trunk/operations/workshop/mandelbrot.c
==============================================================================
--- trunk/operations/workshop/mandelbrot.c	(original)
+++ trunk/operations/workshop/mandelbrot.c	Wed Jan 23 00:59:39 2008
@@ -33,7 +33,7 @@
 
 #define GEGL_CHANT_SOURCE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 static gfloat mandel_calc(GeglChantOperation *self, gfloat x, gfloat y)
 {

Modified: trunk/operations/workshop/max-envelope.c
==============================================================================
--- trunk/operations/workshop/max-envelope.c	(original)
+++ trunk/operations/workshop/max-envelope.c	Wed Jan 23 00:59:39 2008
@@ -33,7 +33,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void max_envelope (GeglBuffer *src,

Modified: trunk/operations/workshop/mblur.c
==============================================================================
--- trunk/operations/workshop/mblur.c	(original)
+++ trunk/operations/workshop/mblur.c	Wed Jan 23 00:59:39 2008
@@ -30,7 +30,7 @@
 #define GEGL_CHANT_INIT
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 
 typedef struct
 {

Modified: trunk/operations/workshop/min-envelope.c
==============================================================================
--- trunk/operations/workshop/min-envelope.c	(original)
+++ trunk/operations/workshop/min-envelope.c	Wed Jan 23 00:59:39 2008
@@ -33,7 +33,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void min_envelope (GeglBuffer *src,

Modified: trunk/operations/workshop/rawbayer-load.c
==============================================================================
--- trunk/operations/workshop/rawbayer-load.c	(original)
+++ trunk/operations/workshop/rawbayer-load.c	Wed Jan 23 00:59:39 2008
@@ -28,7 +28,7 @@
 #define GEGL_CHANT_SOURCE
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <unistd.h>
 #include <string.h>
 #include <stdio.h>

Modified: trunk/operations/workshop/snn-percentile.c
==============================================================================
--- trunk/operations/workshop/snn-percentile.c	(original)
+++ trunk/operations/workshop/snn-percentile.c	Wed Jan 23 00:59:39 2008
@@ -36,7 +36,7 @@
 #define GEGL_CHANT_AREA_FILTER
 #define GEGL_CHANT_PREPARE
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void

Modified: trunk/operations/workshop/stress.c
==============================================================================
--- trunk/operations/workshop/stress.c	(original)
+++ trunk/operations/workshop/stress.c	Wed Jan 23 00:59:39 2008
@@ -38,7 +38,7 @@
 
 #define GEGL_CHANT_CLASS_INIT
 
-#include "gegl-chant.h"
+#include "gegl-old-chant.h"
 #include <math.h>
 
 static void stress (GeglBuffer *src,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]