removed no longer needed context_id. resynced from GEGL. resynced from
* app/gegl/gimpoperationtilesink.c: removed no longer needed context_id. * app/gegl/gegl/gegl-operation-sink.h: resynced from GEGL. * app/gegl/gegl/gegl-types.h: resynced from GEGL. svn path=/trunk/; revision=24571
This commit is contained in:
parent
4aa7e67c67
commit
ff5507dfa7
4 changed files with 7 additions and 13 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2008-01-08 Øyvind Kolås <pippin@gimp.org>
|
||||
|
||||
* app/gegl/gimpoperationtilesink.c: removed no longer needed
|
||||
context_id.
|
||||
* app/gegl/gegl/gegl-operation-sink.h: resynced from GEGL.
|
||||
* app/gegl/gegl/gegl-types.h: resynced from GEGL.
|
||||
|
||||
2008-01-08 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimpitem.[ch]: removed "add_alpha" parameter from
|
||||
|
|
|
|||
|
|
@ -44,7 +44,6 @@ struct _GeglOperationSinkClass
|
|||
gboolean needs_full;
|
||||
|
||||
gboolean (* process) (GeglOperation *self,
|
||||
GeglNodeContext *context,
|
||||
GeglBuffer *input,
|
||||
const GeglRectangle *result);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -23,10 +23,8 @@
|
|||
G_BEGIN_DECLS
|
||||
|
||||
typedef struct _GeglConnection GeglConnection;
|
||||
#ifndef __GEGL_H__
|
||||
typedef struct _GeglColor GeglColor;
|
||||
typedef struct _GeglCurve GeglCurve;
|
||||
#endif
|
||||
typedef struct _GeglCRVisitor GeglCRVisitor;
|
||||
typedef struct _GeglDebugRectVisitor GeglDebugRectVisitor;
|
||||
typedef struct _GeglEvalMgr GeglEvalMgr;
|
||||
|
|
@ -35,27 +33,20 @@ typedef struct _GeglFinishVisitor GeglFinishVisitor;
|
|||
typedef struct _GeglGraph GeglGraph;
|
||||
typedef struct _GeglHaveVisitor GeglHaveVisitor;
|
||||
typedef struct _GeglNeedVisitor GeglNeedVisitor;
|
||||
#ifndef __GEGL_H__
|
||||
typedef struct _GeglNode GeglNode;
|
||||
#endif
|
||||
typedef struct _GeglNodeContext GeglNodeContext;
|
||||
typedef struct _GeglOperation GeglOperation;
|
||||
typedef struct _GeglPad GeglPad;
|
||||
#ifndef __GEGL_H__
|
||||
typedef struct _GeglVector GeglVector;
|
||||
typedef struct _GeglProcessor GeglProcessor;
|
||||
#endif
|
||||
typedef struct _GeglPrepareVisitor GeglPrepareVisitor;
|
||||
typedef struct _GeglVisitable GeglVisitable; /* dummy typedef */
|
||||
typedef struct _GeglVisitor GeglVisitor;
|
||||
|
||||
#ifndef __GEGL_H__
|
||||
typedef struct _GeglRectangle GeglRectangle;
|
||||
#endif
|
||||
typedef struct _GeglPoint GeglPoint;
|
||||
typedef struct _GeglDimension GeglDimension;
|
||||
|
||||
#ifndef __GEGL_H__
|
||||
struct _GeglRectangle
|
||||
{
|
||||
gint x;
|
||||
|
|
@ -63,7 +54,6 @@ struct _GeglRectangle
|
|||
gint width;
|
||||
gint height;
|
||||
};
|
||||
#endif
|
||||
|
||||
struct _GeglPoint
|
||||
{
|
||||
|
|
|
|||
|
|
@ -66,7 +66,6 @@ static void gimp_operation_tile_sink_set_property (GObject *object,
|
|||
GParamSpec *pspec);
|
||||
|
||||
static gboolean gimp_operation_tile_sink_process (GeglOperation *operation,
|
||||
GeglNodeContext *context,
|
||||
GeglBuffer *input,
|
||||
const GeglRectangle *result);
|
||||
|
||||
|
|
@ -194,7 +193,6 @@ gimp_operation_tile_sink_set_property (GObject *object,
|
|||
|
||||
static gboolean
|
||||
gimp_operation_tile_sink_process (GeglOperation *operation,
|
||||
GeglNodeContext *context,
|
||||
GeglBuffer *input,
|
||||
const GeglRectangle *result)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue