[gegl] soft-glow: adapt to changes to gaussain blur



commit 7305d073d7000424d68c0db270f200e015fec7a5
Author: Øyvind Kolås <pippin gimp org>
Date:   Fri Oct 9 22:01:49 2015 +0200

    soft-glow: adapt to changes to gaussain blur

 operations/common/softglow.c     |    1 +
 operations/common/unsharp-mask.c |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/operations/common/softglow.c b/operations/common/softglow.c
index 0a952da..e960283 100644
--- a/operations/common/softglow.c
+++ b/operations/common/softglow.c
@@ -68,6 +68,7 @@ grey_blur_buffer (GeglBuffer          *input,
                 "operation", "gegl:gaussian-blur",
                 "std_dev_x", std_dev,
                 "std_dev_y", std_dev,
+                "abyss-policy", "none",
                 NULL);
 
   crop =  gegl_node_new_child (gegl,
diff --git a/operations/common/unsharp-mask.c b/operations/common/unsharp-mask.c
index 769b705..71962f2 100644
--- a/operations/common/unsharp-mask.c
+++ b/operations/common/unsharp-mask.c
@@ -53,7 +53,7 @@ attach (GeglOperation *operation)
   add      = gegl_node_new_child (gegl, "operation", "gegl:add", NULL);
   multiply = gegl_node_new_child (gegl, "operation", "gegl:multiply", NULL);
   subtract = gegl_node_new_child (gegl, "operation", "gegl:subtract", NULL);
-  blur     = gegl_node_new_child (gegl, "operation", "gegl:gaussian-blur",NULL);
+  blur     = gegl_node_new_child (gegl, "operation", "gegl:gaussian-blur", NULL);
 
   gegl_node_link_many (input, subtract, multiply, NULL);
   gegl_node_link (input, blur);


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