[gegl/wip/pippin/pipeline: 87/95] context update
- From: Øyvind "pippin" Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl/wip/pippin/pipeline: 87/95] context update
- Date: Wed, 12 Sep 2018 11:54:59 +0000 (UTC)
commit 3c0422a64fd76f0be4f9e0d7b963a495b5cd1c24
Author: Øyvind Kolås <pippin gimp org>
Date: Wed Jul 25 14:38:25 2018 +0200
context update
gegl/operation/gegl-operation-context-private.h | 2 +-
gegl/operation/gegl-operation-context.c | 6 +++---
gegl/operation/gegl-operation-context.h | 8 ++++----
3 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/gegl/operation/gegl-operation-context-private.h b/gegl/operation/gegl-operation-context-private.h
index b5523ef89..bf7149233 100644
--- a/gegl/operation/gegl-operation-context-private.h
+++ b/gegl/operation/gegl-operation-context-private.h
@@ -60,7 +60,7 @@ struct _GeglOperationContext
2 = 1:4,
4 = 1:8,
6 = 1:16 .. */
- PipeLine *pipeline;
+ GeglOperationPipeLine *pipeline;
GHashTable *contexts; /* to be able to look up the context of
other nodes/ops in the graph we store the
diff --git a/gegl/operation/gegl-operation-context.c b/gegl/operation/gegl-operation-context.c
index ccb1bc5ef..4fd595469 100644
--- a/gegl/operation/gegl-operation-context.c
+++ b/gegl/operation/gegl-operation-context.c
@@ -413,13 +413,13 @@ gegl_operation_context_node_get_context (GeglOperationContext *context,
}
-PipeLine *gegl_operation_context_get_pipeline (GeglOperationContext *context)
+GeglOperationPipeLine *gegl_operation_context_get_pipeline (GeglOperationContext *context)
{
if (!context) return NULL;
return context->pipeline;
}
-void gegl_operation_context_set_pipeline (GeglOperationContext *context,
- PipeLine *pipeline)
+void gegl_operation_context_set_pipeline (GeglOperationContext *context,
+ GeglOperationPipeLine *pipeline)
{
if (!context) return;
context->pipeline = pipeline;
diff --git a/gegl/operation/gegl-operation-context.h b/gegl/operation/gegl-operation-context.h
index c5710415f..658c2d038 100644
--- a/gegl/operation/gegl-operation-context.h
+++ b/gegl/operation/gegl-operation-context.h
@@ -23,7 +23,7 @@
G_BEGIN_DECLS
-typedef struct _PipeLine PipeLine;
+typedef struct _GeglOperationPipeLine GeglOperationPipeLine;
GeglBuffer *gegl_operation_context_get_target (GeglOperationContext *self,
const gchar *padname);
@@ -59,10 +59,10 @@ GeglBuffer * gegl_operation_context_dup_input_maybe_copy (GeglOperationC
GeglOperationContext *gegl_operation_context_node_get_context (GeglOperationContext *context,
GeglNode *node);
-PipeLine *gegl_operation_context_get_pipeline (GeglOperationContext *context);
+GeglOperationPipeLine *gegl_operation_context_get_pipeline (GeglOperationContext *context);
-void gegl_operation_context_set_pipeline (GeglOperationContext *context,
- PipeLine *pipeline);
+void gegl_operation_context_set_pipeline (GeglOperationContext *context,
+ GeglOperationPipeLine *pipeline);
G_END_DECLS
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]