gegl r2582 - in trunk: . gegl/operation



Author: neo
Date: Fri Sep  5 08:24:31 2008
New Revision: 2582
URL: http://svn.gnome.org/viewvc/gegl?rev=2582&view=rev

Log:
2008-09-05  Sven Neumann  <sven gimp org>

	* gegl/operation/gegl-operation-composer3.c
	* gegl/operation/gegl-operation-point-composer3.c: formatting.



Modified:
   trunk/ChangeLog
   trunk/gegl/operation/gegl-operation-composer3.c
   trunk/gegl/operation/gegl-operation-point-composer3.c

Modified: trunk/gegl/operation/gegl-operation-composer3.c
==============================================================================
--- trunk/gegl/operation/gegl-operation-composer3.c	(original)
+++ trunk/gegl/operation/gegl-operation-composer3.c	Fri Sep  5 08:24:31 2008
@@ -40,22 +40,23 @@
   PROP_AUX2,
 };
 
-static void     get_property (GObject             *gobject,
-                              guint                prop_id,
-                              GValue              *value,
-                              GParamSpec          *pspec);
-static void     set_property (GObject             *gobject,
-                              guint                prop_id,
-                              const GValue        *value,
-                              GParamSpec          *pspec);
-static gboolean gegl_operation_composer3_process (GeglOperation       *operation,
-                              GeglOperationContext     *context,
-                              const gchar         *output_prop,
-                              const GeglRectangle *result);
-static void     attach       (GeglOperation       *operation);
-static GeglNode*detect       (GeglOperation       *operation,
-                              gint                 x,
-                              gint                 y);
+static void     get_property (GObject              *gobject,
+                              guint                 prop_id,
+                              GValue               *value,
+                              GParamSpec           *pspec);
+static void     set_property (GObject              *gobject,
+                              guint                 prop_id,
+                              const GValue         *value,
+                              GParamSpec           *pspec);
+static gboolean gegl_operation_composer3_process
+                             (GeglOperation        *operation,
+                              GeglOperationContext *context,
+                              const gchar          *output_prop,
+                              const GeglRectangle  *result);
+static void     attach       (GeglOperation        *operation);
+static GeglNode*detect       (GeglOperation        *operation,
+                              gint                  x,
+                              gint                  y);
 
 static GeglRectangle get_bounding_box        (GeglOperation        *self);
 static GeglRectangle get_required_for_output (GeglOperation        *self,
@@ -157,17 +158,17 @@
 }
 
 static gboolean
-gegl_operation_composer3_process (GeglOperation       *operation,
-                        GeglOperationContext     *context,
-                        const gchar         *output_prop,
-                        const GeglRectangle *result)
+gegl_operation_composer3_process (GeglOperation        *operation,
+                                  GeglOperationContext *context,
+                                  const gchar          *output_prop,
+                                  const GeglRectangle  *result)
 {
   GeglOperationComposer3Class *klass   = GEGL_OPERATION_COMPOSER3_GET_CLASS (operation);
-  GeglBuffer                 *input;
-  GeglBuffer                 *aux;
-  GeglBuffer                 *aux2;
-  GeglBuffer                 *output;
-  gboolean                    success = FALSE;
+  GeglBuffer                  *input;
+  GeglBuffer                  *aux;
+  GeglBuffer                  *aux2;
+  GeglBuffer                  *output;
+  gboolean                     success = FALSE;
 
   if (strcmp (output_prop, "output"))
     {
@@ -241,7 +242,7 @@
 }
 
 static GeglRectangle
-get_required_for_output (GeglOperation        *self,
+get_required_for_output (GeglOperation       *self,
                          const gchar         *input_pad,
                          const GeglRectangle *roi)
 {

Modified: trunk/gegl/operation/gegl-operation-point-composer3.c
==============================================================================
--- trunk/gegl/operation/gegl-operation-point-composer3.c	(original)
+++ trunk/gegl/operation/gegl-operation-point-composer3.c	Fri Sep  5 08:24:31 2008
@@ -37,10 +37,10 @@
                                const GeglRectangle *result);
 
 static gboolean
-gegl_operation_composer3_process2 (GeglOperation       *operation,
-                        GeglOperationContext     *context,
-                        const gchar         *output_prop,
-                        const GeglRectangle *result);
+gegl_operation_composer3_process2 (GeglOperation        *operation,
+                                   GeglOperationContext *context,
+                                   const gchar          *output_prop,
+                                   const GeglRectangle  *result);
 
 G_DEFINE_TYPE (GeglOperationPointComposer3, gegl_operation_point_composer3, GEGL_TYPE_OPERATION_COMPOSER3)
 
@@ -76,17 +76,17 @@
  * able to bail out earlier for some common processing time pitfalls
  */
 static gboolean
-gegl_operation_composer3_process2 (GeglOperation       *operation,
-                                  GeglOperationContext     *context,
-                                  const gchar         *output_prop,
-                                  const GeglRectangle *result)
+gegl_operation_composer3_process2 (GeglOperation        *operation,
+                                   GeglOperationContext *context,
+                                   const gchar          *output_prop,
+                                   const GeglRectangle  *result)
 {
   GeglOperationComposer3Class *klass   = GEGL_OPERATION_COMPOSER3_GET_CLASS (operation);
-  GeglBuffer                 *input;
-  GeglBuffer                 *aux;
-  GeglBuffer                 *aux2;
-  GeglBuffer                 *output;
-  gboolean                    success = FALSE;
+  GeglBuffer                  *input;
+  GeglBuffer                  *aux;
+  GeglBuffer                  *aux2;
+  GeglBuffer                  *output;
+  gboolean                     success = FALSE;
 
   if (strcmp (output_prop, "output"))
     {
@@ -138,11 +138,11 @@
 
 static gboolean
 gegl_operation_point_composer3_process (GeglOperation       *operation,
-                                       GeglBuffer          *input,
-                                       GeglBuffer          *aux,
-                                       GeglBuffer          *aux2,
-                                       GeglBuffer          *output,
-                                       const GeglRectangle *result)
+                                        GeglBuffer          *input,
+                                        GeglBuffer          *aux,
+                                        GeglBuffer          *aux2,
+                                        GeglBuffer          *output,
+                                        const GeglRectangle *result)
 {
   GeglOperationPointComposer3Class *point_composer3_class = GEGL_OPERATION_POINT_COMPOSER3_GET_CLASS (operation);
   const Babl *in_format   = gegl_operation_get_format (operation, "input");



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