From 4100ce501ac2620578757e56f74f014b9de576ad Mon Sep 17 00:00:00 2001 From: Bauke Date: Mon, 26 Feb 2024 18:40:20 +0100 Subject: [PATCH] Add the edge-neon operation. --- gegl/source/operations/mod.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gegl/source/operations/mod.rs b/gegl/source/operations/mod.rs index b2be670..cac5723 100644 --- a/gegl/source/operations/mod.rs +++ b/gegl/source/operations/mod.rs @@ -111,6 +111,18 @@ gegl_operation!( ), ); +gegl_operation!( + struct_name: EdgeNeon, + gegl_name: "edge-neon", + append_crop: false, + values: ( + /// Strength of effect. + amount: f64, 0.0, + /// Radius of effect in pixels. + radius: f64, 5.0, + ), +); + gegl_operation!( struct_name: FocusBlur, gegl_name: "focus-blur",