gegl r2963 - in trunk: . operations/common
- From: martinn svn gnome org
- To: svn-commits-list gnome org
- Subject: gegl r2963 - in trunk: . operations/common
- Date: Tue, 17 Mar 2009 20:00:53 +0000 (UTC)
Author: martinn
Date: Tue Mar 17 20:00:53 2009
New Revision: 2963
URL: http://svn.gnome.org/viewvc/gegl?rev=2963&view=rev
Log:
Namespace static functions in gegl:color
Modified:
trunk/ChangeLog
trunk/operations/common/color.c
Modified: trunk/operations/common/color.c
==============================================================================
--- trunk/operations/common/color.c (original)
+++ trunk/operations/common/color.c Tue Mar 17 20:00:53 2009
@@ -31,23 +31,23 @@
#include "gegl-chant.h"
static void
-prepare (GeglOperation *operation)
+gegl_color_op_prepare (GeglOperation *operation)
{
gegl_operation_set_format (operation, "output", babl_format ("RGBA float"));
}
static GeglRectangle
-get_bounding_box (GeglOperation *operation)
+gegl_color_op_get_bounding_box (GeglOperation *operation)
{
GeglRectangle result = {-10000000,-10000000,20000000,20000000};
return result;
}
static gboolean
-process (GeglOperation *operation,
- void *out_buf,
- glong n_pixels,
- const GeglRectangle *roi)
+gegl_color_op_process (GeglOperation *operation,
+ void *out_buf,
+ glong n_pixels,
+ const GeglRectangle *roi)
{
GeglChantO *o = GEGL_CHANT_PROPERTIES (operation);
gfloat *out_pixel = out_buf;
@@ -74,12 +74,12 @@
GeglOperationClass *operation_class;
GeglOperationPointRenderClass *point_render_class;
- operation_class = GEGL_OPERATION_CLASS (klass);
+ operation_class = GEGL_OPERATION_CLASS (klass);
point_render_class = GEGL_OPERATION_POINT_RENDER_CLASS (klass);
- point_render_class->process = process;
- operation_class->get_bounding_box = get_bounding_box;
- operation_class->prepare = prepare;
+ point_render_class->process = gegl_color_op_process;
+ operation_class->get_bounding_box = gegl_color_op_get_bounding_box;
+ operation_class->prepare = gegl_color_op_prepare;
operation_class->name = "gegl:color";
operation_class->categories = "render";
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]