[gegl/soc-2013-opecl-ops] operations: Make plasma.c a more flexible source
- From: Carlos Zubieta <czubieta src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl/soc-2013-opecl-ops] operations: Make plasma.c a more flexible source
- Date: Sat, 14 Sep 2013 23:18:00 +0000 (UTC)
commit 83a5a21550f90b37190e03b964f90724f4903cd6
Author: Téo Mazars <teo mazars ensimag fr>
Date: Fri Sep 13 00:45:07 2013 +0200
operations: Make plasma.c a more flexible source
... the same way gegl:rectange is.
Also, allow turbulence to be 0.0
operations/common/plasma.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/operations/common/plasma.c b/operations/common/plasma.c
index ff73024..6439743 100644
--- a/operations/common/plasma.c
+++ b/operations/common/plasma.c
@@ -36,9 +36,13 @@
gegl_chant_int (seed, _("Seed"), -1, G_MAXINT, -1,
_("Random seed."
"Passing -1 implies that the seed is randomly chosen."))
-gegl_chant_double (turbulence, _("Turbulence"), 0.1, 7.0, 1.0,
+gegl_chant_double (turbulence, _("Turbulence"), 0.0, 7.0, 1.0,
_("The value of the turbulence"))
+gegl_chant_int (x, _("X"), G_MININT, G_MAXINT, 0,
+ _("X start of the generated buffer"))
+gegl_chant_int (y, _("Y"), G_MININT, G_MAXINT, 0,
+ _("Y start of the generated buffer"))
gegl_chant_int (width, _("Width"), 0, G_MAXINT, 1024,
_("Width of the generated buffer"))
gegl_chant_int (height, _("Height"), 0, G_MAXINT, 768,
@@ -360,7 +364,7 @@ get_bounding_box (GeglOperation *operation)
{
GeglChantO *o = GEGL_CHANT_PROPERTIES (operation);
- return *GEGL_RECTANGLE (0, 0, o->width, o->height);
+ return *GEGL_RECTANGLE (o->x, o->y, o->width, o->height);
}
static GeglRectangle
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]