[gegl] filmic: update description



commit 8886f3db5e25e913468bdd483ecab6f5294e12a4
Author: Øyvind Kolås <pippin gimp org>
Date:   Tue Jul 17 22:46:28 2018 +0200

    filmic: update description

 operations/workshop/filmic.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/operations/workshop/filmic.c b/operations/workshop/filmic.c
index 04c30d8bf..19a184474 100644
--- a/operations/workshop/filmic.c
+++ b/operations/workshop/filmic.c
@@ -32,7 +32,7 @@
 
 #include "gegl-op.h"
 
-static inline float aces_filmic (float x)
+static inline float aces_rrt (float x)
 {
  /* source of approximation:
 
@@ -57,9 +57,9 @@ process (GeglOperation       *op,
 
   while (samples--)
     {
-      out[0] = aces_filmic (in[0]);
-      out[1] = aces_filmic (in[1]);
-      out[2] = aces_filmic (in[2]);
+      out[0] = aces_rrt (in[0]);
+      out[1] = aces_rrt (in[1]);
+      out[2] = aces_rrt (in[2]);
       out[3] = in[3];
 
       in += 4;
@@ -84,7 +84,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "title",       _("ACES Filmic"),
     "categories" , "color:tonemapping",
     "description",
-       _("HDR to SDR proofing filter/mapping curve that is an approximation of the ACES filmic curve, useful 
for consistent previewing of content in near HDR range."),
+       _("HDR to SDR proofing filter/mapping curve that is an approximation of the ACES RRT (Reference 
Rendering Transform)."),
     NULL);
 }
 


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