Kebab-case GEGL graph keys.
This commit is contained in:
parent
3312cf055a
commit
3d7ee11150
|
@ -31,6 +31,7 @@ pub trait GeglOperation: Default + std::fmt::Debug {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let key = key.replace('_', "-");
|
||||||
graph.push(format!("{key}={value}"));
|
graph.push(format!("{key}={value}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ expression: graphs
|
||||||
"non-default: exclude defaults",
|
"non-default: exclude defaults",
|
||||||
[
|
[
|
||||||
"gegl:bloom",
|
"gegl:bloom",
|
||||||
"limit_exposure=true",
|
"limit-exposure=true",
|
||||||
"radius=100",
|
"radius=100",
|
||||||
"softness=100",
|
"softness=100",
|
||||||
],
|
],
|
||||||
|
@ -16,7 +16,7 @@ expression: graphs
|
||||||
"non-default: include defaults",
|
"non-default: include defaults",
|
||||||
[
|
[
|
||||||
"gegl:bloom",
|
"gegl:bloom",
|
||||||
"limit_exposure=true",
|
"limit-exposure=true",
|
||||||
"radius=100",
|
"radius=100",
|
||||||
"softness=100",
|
"softness=100",
|
||||||
"strength=50",
|
"strength=50",
|
||||||
|
@ -33,7 +33,7 @@ expression: graphs
|
||||||
"default: include defaults",
|
"default: include defaults",
|
||||||
[
|
[
|
||||||
"gegl:bloom",
|
"gegl:bloom",
|
||||||
"limit_exposure=false",
|
"limit-exposure=false",
|
||||||
"radius=10",
|
"radius=10",
|
||||||
"softness=25",
|
"softness=25",
|
||||||
"strength=50",
|
"strength=50",
|
||||||
|
|
|
@ -7,15 +7,15 @@ expression: graphs
|
||||||
"non-default: exclude defaults",
|
"non-default: exclude defaults",
|
||||||
[
|
[
|
||||||
"gegl:cartoon",
|
"gegl:cartoon",
|
||||||
"mask_radius=0.1",
|
"mask-radius=0.1",
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"non-default: include defaults",
|
"non-default: include defaults",
|
||||||
[
|
[
|
||||||
"gegl:cartoon",
|
"gegl:cartoon",
|
||||||
"mask_radius=0.1",
|
"mask-radius=0.1",
|
||||||
"pct_black=0.2",
|
"pct-black=0.2",
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
|
@ -28,8 +28,8 @@ expression: graphs
|
||||||
"default: include defaults",
|
"default: include defaults",
|
||||||
[
|
[
|
||||||
"gegl:cartoon",
|
"gegl:cartoon",
|
||||||
"mask_radius=7",
|
"mask-radius=7",
|
||||||
"pct_black=0.2",
|
"pct-black=0.2",
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue