[gegl] tile: pass-through on infinite planes (issue #179)
- From: Thomas Manni <tmanni src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] tile: pass-through on infinite planes (issue #179)
- Date: Tue, 30 Jul 2019 22:50:51 +0000 (UTC)
commit 83704821335224aba1c9d5791f3ae7617a8b2ad5
Author: Thomas Manni <thomas manni free fr>
Date: Wed Jul 31 00:48:39 2019 +0200
tile: pass-through on infinite planes (issue #179)
operations/common/tile.c | 41 +++++++++++++++++++++++++++++++++--------
1 file changed, 33 insertions(+), 8 deletions(-)
---
diff --git a/operations/common/tile.c b/operations/common/tile.c
index 2164d4900..a1179a11d 100644
--- a/operations/common/tile.c
+++ b/operations/common/tile.c
@@ -61,17 +61,15 @@ get_required_for_output (GeglOperation *operation,
const gchar *input_pad,
const GeglRectangle *roi)
{
- GeglRectangle *rect = gegl_operation_source_get_bounding_box (operation, input_pad);
+ const GeglRectangle *in_rect =
+ gegl_operation_source_get_bounding_box (operation, input_pad);
- if (rect)
+ if (in_rect && ! gegl_rectangle_is_infinite_plane (in_rect))
{
- return *rect;
- }
- else
- {
- GeglRectangle empty = {0,};
- return empty;
+ return *in_rect;
}
+
+ return *roi;
}
static GeglRectangle
@@ -98,6 +96,32 @@ process (GeglOperation *operation,
return TRUE;
}
+static gboolean
+operation_process (GeglOperation *operation,
+ GeglOperationContext *context,
+ const gchar *output_prop,
+ const GeglRectangle *result,
+ gint level)
+{
+ GeglOperationClass *operation_class;
+
+ const GeglRectangle *in_rect =
+ gegl_operation_source_get_bounding_box (operation, "input");
+
+ if (in_rect && gegl_rectangle_is_infinite_plane (in_rect))
+ {
+ gpointer in = gegl_operation_context_get_object (context, "input");
+ gegl_operation_context_take_object (context, "output",
+ g_object_ref (G_OBJECT (in)));
+ return TRUE;
+ }
+
+ operation_class = GEGL_OPERATION_CLASS (gegl_op_parent_class);
+
+ return operation_class->process (operation, context, output_prop, result,
+ gegl_operation_context_get_level (context));
+}
+
static void
gegl_op_class_init (GeglOpClass *klass)
{
@@ -124,6 +148,7 @@ gegl_op_class_init (GeglOpClass *klass)
filter_class = GEGL_OPERATION_FILTER_CLASS (klass);
filter_class->process = process;
+ operation_class->process = operation_process;
operation_class->prepare = prepare;
operation_class->get_bounding_box = get_bounding_box;
operation_class->get_required_for_output = get_required_for_output;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]