Skip to content

Commit 41a426f

Browse files
authored
Add files via upload
future proofing bevel and inner glow. No noticable changes for users except for the new names bevel and inner glow have.
1 parent 67a352c commit 41a426f

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

compile_bevel_here/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Bevel's source code
1+
high pass of box blur
22
=========
33

44
A custom GEGL operation (and by extension GIMP filter) that implements a reversal of Box Blur's algorithm to sharpen images'

compile_bevel_here/bevel.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,9 @@ gegl_op_class_init (GeglOpClass *klass)
206206
operation_meta_class->update = update_graph;
207207

208208
gegl_operation_class_set_keys (operation_class,
209-
"name", "gegl:bevel",
210-
"title", _("Bevel"),
211-
"categories", "Aristic",
209+
"name", "lb:bevel",
210+
"title", _("Bevel (to blend)"),
211+
"categories", "Artistic",
212212
"reference-hash", "45ed5656a28a512570f0f25sb2ac",
213213
"description", _("You are expected to use GEGL or Gimp blend modes with this plugin. Works best with blend modes multiply and grain merge. Emboss mode requires non-GEGL Gimp blend modes"
214214
""),

compile_gegl_effects_here/gegleffectspending.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1531,7 +1531,7 @@ additioncolor = gegl_node_new_child (gegl,
15311531
/* All nodes relating to the bevel start here*/
15321532

15331533
mbd = gegl_node_new_child (gegl,
1534-
"operation", "gegl:bevel",
1534+
"operation", "lb:bevel",
15351535
NULL);
15361536

15371537
mbdopacity = gegl_node_new_child (gegl,
@@ -1582,7 +1582,7 @@ screen = gegl_node_new_child (gegl,
15821582

15831583

15841584
innerglow = gegl_node_new_child (gegl,
1585-
"operation", "gegl:innerglow",
1585+
"operation", "lb:innerglow",
15861586
NULL);
15871587

15881588
/*The nop functions as a ref and ID for inner glow's placement in a GEGL Graph*/

compile_innerglow_here/inner-glow.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ gegl_op_class_init (GeglOpClass *klass)
182182
operation_class->attach = attach;
183183

184184
gegl_operation_class_set_keys (operation_class,
185-
"name", "gegl:innerglow",
186-
"title", _("Inner Glow"),
185+
"name", "lb:innerglow",
186+
"title", _("Inner Glow (to blend)"),
187187
"categories", "Aristic",
188188
"reference-hash", "g3do6aaoo1100g0fjf25sb2ac",
189189
"description", _("GEGL does an inner glow effect. For this filter to work you need to use the 'Normal' or other blending options. Or a duplicate layer on top. "

compile_zzstrokebevelimage_here/zzstrokebevelimage.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ static void attach (GeglOperation *operation)
323323

324324

325325
bevel = gegl_node_new_child (gegl,
326-
"operation", "gegl:bevel",
326+
"operation", "lb:bevel",
327327
NULL);
328328

329329
huelight = gegl_node_new_child (gegl,

0 commit comments

Comments
 (0)