[gegl] operations: opt cubism and cartoon out of threading



commit 97e301652f7d3580ecf0341fd0b3f9382193bb72
Author: Øyvind Kolås <pippin gimp org>
Date:   Tue Jul 1 03:49:12 2014 +0200

    operations: opt cubism and cartoon out of threading

 operations/common/cartoon.c |    1 +
 operations/common/cubism.c  |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/operations/common/cartoon.c b/operations/common/cartoon.c
index 3aa1d24..8ff7428 100644
--- a/operations/common/cartoon.c
+++ b/operations/common/cartoon.c
@@ -309,6 +309,7 @@ gegl_op_class_init (GeglOpClass *klass)
   operation_class->prepare                 = prepare;
   operation_class->get_bounding_box        = get_bounding_box;
   operation_class->get_cached_region       = get_cached_region;
+  operation_class->threaded                = FALSE;
   operation_class->get_required_for_output = get_required_for_output;
 
   filter_class->process = process;
diff --git a/operations/common/cubism.c b/operations/common/cubism.c
index b3e5b57..42cbc17 100644
--- a/operations/common/cubism.c
+++ b/operations/common/cubism.c
@@ -603,6 +603,7 @@ gegl_op_class_init (GeglOpClass *klass)
 
   filter_class->process                    = process;
   operation_class->prepare                 = prepare;
+  operation_class->threaded                = FALSE;
   operation_class->get_bounding_box        = get_bounding_box;
   operation_class->get_required_for_output = get_required_for_output;
   operation_class->get_cached_region       = get_cached_region;


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