You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compile_bevel_here/bevel.c
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,16 @@
19
19
20
20
/*GEGL Bevel is a stand alone plugin but it is also part of GEGL Effects. The stand alone version does more then the GEGL Effects implementation of it. */
property_double (slideupblack, _("Slide up if Bevel is very dark or black. "), 0.00)
71
-
description (_("GEGL Bevel works on black Bevels when using blend modes like Grain Merge and Hardlight. All you have to do is select those blend modes for black text and then move this slider up."))
description (_("This slider allows GEGL bevel to works on black Bevels; but the user must still manually select blend modes like Grain Merge and Hardlight that are known to work with very dark Bevels. This also allows bevel to be applied on image file overlays without conforming to an image's details."))
Copy file name to clipboardExpand all lines: compile_gegl_effects_here/gegleffectspending.c
+36-33Lines changed: 36 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,28 @@ then the title and or gegl operation of name of one mf my plugins; example "gegl
55
55
where it is used.
56
56
57
57
58
+
Crude recreation of parts of GEGL Effects graph. This just shows how the nodes are ordered. They are many things missing and I can't possibly list all the options.
59
+
DropShadow is used in place of the hidden operation. REQUIRES lb:bevel and lb:innerglow
/*This nop was once a function that was disabled. zzstrokebevelimags opacity caused problems for a technical reason so I had to make an extra opacity meter*/
1730
-
extrassgopacity=gegl_node_new_child (gegl,
1731
-
"operation", "gegl:nop",
1732
-
NULL);
1733
-
1734
1740
/* All nodes relating to Extra Outline, Shadw Glow end here*/
1735
1741
1736
1742
/* All nodes relating to image file overlay begin here*/
@@ -1869,7 +1875,6 @@ drop shadow is applied in a gegl graph below them.*/
Copy file name to clipboardExpand all lines: compile_glass_over_text_here/glassovertext.c
+21-21Lines changed: 21 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,25 @@
19
19
20
20
/*GEGL Glass Over Text was once just a stand alone plugin, but now it is also part of GEGL Effects. The stand alone version still exist and does more then the GEGL Effects implementation of it. */
/*GEGL Graph here. NOTE FOR DEVS replacing"gimp:layer-mode layer-mode=erase with gegl:xor does not work proper. I tried and you can try it too and watch it fail. GEGL blend modes are not as good as
39
+
Gimp blend modes */
40
+
22
41
#include"config.h"
23
42
#include<glib/gi18n-lib.h>
24
43
@@ -52,28 +71,10 @@ property_boolean (enableglasstext, _("Enable Glass on Text for GEGL Effects"), T
52
71
/* ui_meta ("role", "output-extent") hides this from showing up in the GUI */
/*GEGL Graph here. NOTE FOR DEVS replacing"gimp:layer-mode layer-mode=erase with gegl:xor does not work proper. I tried and you can try it too and watch it fail. GEGL blend modes are not as good as
Copy file name to clipboardExpand all lines: compile_innerglow_here/inner-glow.c
+10-7Lines changed: 10 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -19,21 +19,23 @@
19
19
20
20
/*GEGL Inner Glow is a stand alone plugin but it is also part of GEGL Effects. The stand alone version does more then the GEGL Effects implementation of it. */
21
21
22
+
/*
23
+
Recreation of Inner Glow's GEGL Graph. May not be 100% accurate but you can test it without installing this way.
0 commit comments