[gegl] operations: change noise-hurl's formats to "R'G'B'A float"



commit d48d9c55ab1da889c39ca552696601a726600d71
Author: Michael Natterer <mitch gimp org>
Date:   Fri Mar 8 15:39:13 2013 +0100

    operations: change noise-hurl's formats to "R'G'B'A float"
    
    because it produces random RGB values that need to be evenly
    distributed perceptually, not linearly.

 operations/common/noise-hurl.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/operations/common/noise-hurl.c b/operations/common/noise-hurl.c
index bee7f2a..ff9abc2 100644
--- a/operations/common/noise-hurl.c
+++ b/operations/common/noise-hurl.c
@@ -47,8 +47,8 @@ gegl_chant_int    (repeat, _("Repeat"),
 static void
 prepare (GeglOperation *operation)
 {
-  gegl_operation_set_format (operation, "input" , babl_format ("RGBA float"));
-  gegl_operation_set_format (operation, "output", babl_format ("RGBA float"));
+  gegl_operation_set_format (operation, "input" , babl_format ("R'G'B'A float"));
+  gegl_operation_set_format (operation, "output", babl_format ("R'G'B'A float"));
 }
 
 static gboolean


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]