[gegl] ops: add mising reference hashes



commit 9c300ded35dac2d1e61fb7cdc67cf23ba9b41886
Author: John Marshall <jtm home gmail com>
Date:   Thu Jul 9 19:44:11 2020 +0100

    ops: add mising reference hashes

 operations/common-cxx/focus-blur.c                      | 1 +
 operations/common-cxx/lens-blur.cc                      | 1 +
 operations/common-cxx/variable-blur.c                   | 7 ++++---
 operations/common-gpl3+/shadows-highlights-correction.c | 7 ++++---
 operations/common/absolute.c                            | 9 +++++----
 operations/common/bloom.c                               | 1 +
 operations/common/box-blur.c                            | 1 +
 operations/common/color-assimilation-grid.c             | 7 ++++---
 operations/common/domain-transform.c                    | 1 +
 operations/common/dropshadow.c                          | 3 ++-
 operations/common/little-planet.c                       | 3 ++-
 operations/common/negative-darkroom.c                   | 7 ++++---
 operations/common/spherize.c                            | 1 +
 operations/common/stress.c                              | 1 +
 operations/common/stretch-contrast-hsv.c                | 7 ++++---
 operations/common/stretch-contrast.c                    | 3 ++-
 operations/external/text.c                              | 7 ++++---
 operations/seamless-clone/seamless-clone-compose.c      | 5 +++--
 operations/transform/border-align.c                     | 1 +
 19 files changed, 46 insertions(+), 27 deletions(-)
---
diff --git a/operations/common-cxx/focus-blur.c b/operations/common-cxx/focus-blur.c
index 4b87ec386..071195edb 100644
--- a/operations/common-cxx/focus-blur.c
+++ b/operations/common-cxx/focus-blur.c
@@ -319,6 +319,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "name",        "gegl:focus-blur",
     "title",       _("Focus Blur"),
     "categories",  "blur",
+    "reference-hash", "a6f7a6425769c7d8b1d277a5c3f25973",
     "description", _("Blur the image around a focal point"),
     NULL);
 }
diff --git a/operations/common-cxx/lens-blur.cc b/operations/common-cxx/lens-blur.cc
index c5624af2f..965e0bf5f 100644
--- a/operations/common-cxx/lens-blur.cc
+++ b/operations/common-cxx/lens-blur.cc
@@ -503,6 +503,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "name",        "gegl:lens-blur",
     "title",       _("Lens Blur"),
     "categories",  "blur",
+    "reference-hash", "c5dc4c97b0dacbe3fee41cefca1e6f42",
     "description", _("Simulate out-of-focus lens blur"),
     NULL);
 }
diff --git a/operations/common-cxx/variable-blur.c b/operations/common-cxx/variable-blur.c
index 504d04609..cb3c4738f 100644
--- a/operations/common-cxx/variable-blur.c
+++ b/operations/common-cxx/variable-blur.c
@@ -203,9 +203,10 @@ gegl_op_class_init (GeglOpClass *klass)
   operation_meta_class->update = update;
 
   gegl_operation_class_set_keys (operation_class,
-    "name",        "gegl:variable-blur",
-    "title",       _("Variable Blur"),
-    "categories",  "blur",
+    "name",           "gegl:variable-blur",
+    "title",          _("Variable Blur"),
+    "categories",     "blur",
+    "reference-hash", "553023d2b937e2ebeb216a7999dd12b3",
     "description", _("Blur the image by a varying amount using a mask"),
     NULL);
 }
diff --git a/operations/common-gpl3+/shadows-highlights-correction.c 
b/operations/common-gpl3+/shadows-highlights-correction.c
index 0e68d52e6..cb5a86622 100644
--- a/operations/common-gpl3+/shadows-highlights-correction.c
+++ b/operations/common-gpl3+/shadows-highlights-correction.c
@@ -357,9 +357,10 @@ gegl_op_class_init (GeglOpClass *klass)
   point_composer_class->cl_process  = cl_process;
 
   gegl_operation_class_set_keys (operation_class,
-    "name",        "gegl:shadows-highlights-correction",
-    "categories",  "hidden",
-    "license",     "GPL3+",
+    "name",           "gegl:shadows-highlights-correction",
+    "categories",     "hidden",
+    "license",        "GPL3+",
+    "reference-hash", "26edcb1732f29cbbd3ca543c76e57c9b",
     "description", _("Lighten shadows and darken highlights"),
     NULL);
 }
diff --git a/operations/common/absolute.c b/operations/common/absolute.c
index 82c9e8d1b..f7120612a 100644
--- a/operations/common/absolute.c
+++ b/operations/common/absolute.c
@@ -68,10 +68,11 @@ gegl_op_class_init (GeglOpClass *klass)
   point_filter_class->process  = process;
 
   gegl_operation_class_set_keys (operation_class,
-    "name",        "gegl:absolute",
-    "title",       _("Absolute"),
-    "compat-name", "gegl:abs",
-    "categories" , "color",
+    "name",           "gegl:absolute",
+    "title",          _("Absolute"),
+    "compat-name",    "gegl:abs",
+    "categories" ,    "color",
+    "reference-hash", "ffb9e86edb25bc92e8d4e68f59bbb04b",
     "description",
        _("Makes each linear RGB component be the absolute of its value, fabs(input_value)"),
     NULL);
diff --git a/operations/common/bloom.c b/operations/common/bloom.c
index 9a6942a78..124095a89 100644
--- a/operations/common/bloom.c
+++ b/operations/common/bloom.c
@@ -206,6 +206,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "name",        "gegl:bloom",
     "title",       _("Bloom"),
     "categories",  "light",
+    "reference-hash", "ab23acffc881bde3fa22458bba89e9ed",
     "description", _("Add glow around bright areas"),
     NULL);
 }
diff --git a/operations/common/box-blur.c b/operations/common/box-blur.c
index ad26b1747..e0ff8f468 100644
--- a/operations/common/box-blur.c
+++ b/operations/common/box-blur.c
@@ -403,6 +403,7 @@ gegl_op_class_init (GeglOpClass *klass)
       "name",        "gegl:box-blur",
       "title",       _("Box Blur"),
       "categories",  "blur",
+      "reference-hash", "a1373d1ad34431271aeec3c289f6ca10",
       "description", _("Blur resulting from averaging the colors of a square neighbourhood."),
       NULL);
 }
diff --git a/operations/common/color-assimilation-grid.c b/operations/common/color-assimilation-grid.c
index 185a278fc..5d38fa7ec 100644
--- a/operations/common/color-assimilation-grid.c
+++ b/operations/common/color-assimilation-grid.c
@@ -141,9 +141,10 @@ gegl_op_class_init (GeglOpClass *klass)
   operation_meta_class->update = update_graph;
 
   gegl_operation_class_set_keys (operation_class,
-    "name",        "gegl:color-assimilation-grid",
-    "title",       _("Color Assimilation Grid"),
-    "categories",  "illusions",
+    "name",           "gegl:color-assimilation-grid",
+    "title",          _("Color Assimilation Grid"),
+    "categories",     "illusions",
+    "reference-hash", "0a082eeef549e25bcd921f1e09e28b31",
     "description", _("Turn image grayscale and overlay an oversaturated grid - through color assimilation 
happening in the human visual system, for some grid scales this produces the illusion that the grayscale grid 
cells themselves also have color."),
     NULL);
 }
diff --git a/operations/common/domain-transform.c b/operations/common/domain-transform.c
index 7f1f405e0..98d1015c0 100644
--- a/operations/common/domain-transform.c
+++ b/operations/common/domain-transform.c
@@ -527,6 +527,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "name",        "gegl:domain-transform",
     "title",       _("Smooth by Domain Transform"),
     "categories" , "enhance:noise-reduction",
+    "reference-hash", "e84e0ca62248f931d0e86d03a74c8638",
     "description", _("An edge-preserving smoothing filter implemented with the "
                      "Domain Transform recursive technique. Similar to a "
                      "bilateral filter, but faster to compute."),
diff --git a/operations/common/dropshadow.c b/operations/common/dropshadow.c
index e41a461c9..1a3602c1c 100644
--- a/operations/common/dropshadow.c
+++ b/operations/common/dropshadow.c
@@ -181,8 +181,9 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
     "name",        "gegl:dropshadow",
-    "categories",  "light",
     "title",       _("Dropshadow"),
+    "categories",  "light",
+    "reference-hash", "1784365a0e801041189309f3a4866b1a",
     "description",
     _("Creates a dropshadow effect on the input buffer"),
     NULL);
diff --git a/operations/common/little-planet.c b/operations/common/little-planet.c
index 13f988a41..463bf9f9f 100644
--- a/operations/common/little-planet.c
+++ b/operations/common/little-planet.c
@@ -525,9 +525,10 @@ gegl_op_class_init (GeglOpClass *klass)
     "name",                  "gegl:stereographic-projection",
     "compat-name",           "gegl:little-planet",
     "title",                 _("Little Planet"),
-    "reference-composition", composition,
     "position-dependent",    "true",
     "categories" ,           "map",
+    "reference-hash",        "36f3d3efea251ded0d16c447c565922c",
+    "reference-composition", composition,
     "description", _("Do a stereographic/little planet transform of an equirectangular image."),
     NULL);
 }
diff --git a/operations/common/negative-darkroom.c b/operations/common/negative-darkroom.c
index 7c579e622..dde1c1a56 100644
--- a/operations/common/negative-darkroom.c
+++ b/operations/common/negative-darkroom.c
@@ -308,9 +308,10 @@ gegl_op_class_init (GeglOpClass *klass)
        point_composer_class->process = process;
 
        gegl_operation_class_set_keys (operation_class,
-               "name"       , "gegl:negative-darkroom",
-               "title",       _("Negative Darkroom"),
-               "categories" , "color",
+               "name",           "gegl:negative-darkroom",
+               "title",          _("Negative Darkroom"),
+               "categories",     "color",
+               "reference-hash", "d492ac8ef38c336aa79e63b7f39f6139",
                "description", _("Simulate a negative film enlargement in an analog darkroom."),
                NULL);
 }
diff --git a/operations/common/spherize.c b/operations/common/spherize.c
index 79354e21e..d62983a62 100644
--- a/operations/common/spherize.c
+++ b/operations/common/spherize.c
@@ -320,6 +320,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "title",              _("Spherize"),
     "categories",         "distort:map",
     "position-dependent", "true",
+    "reference-hash", "215f04f9ad3e27325dfbe834963a6f49",
     "description",        _("Wrap image around a spherical cap"),
     NULL);
 }
diff --git a/operations/common/stress.c b/operations/common/stress.c
index 4edd1ea28..af7fc146c 100644
--- a/operations/common/stress.c
+++ b/operations/common/stress.c
@@ -266,6 +266,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "name",                  "gegl:stress",
     "title",                 _("Spatio Temporal Retinex-like Envelope with Stochastic Sampling"),
     "categories",            "enhance:tonemapping",
+    "reference-hash",        "992ec85d36a5ad598a2533c4593d89d3",
     "reference-composition", composition,
     "description",
         _("Spatio Temporal Retinex-like Envelope with Stochastic Sampling"),
diff --git a/operations/common/stretch-contrast-hsv.c b/operations/common/stretch-contrast-hsv.c
index ee7da1106..726a76da6 100644
--- a/operations/common/stretch-contrast-hsv.c
+++ b/operations/common/stretch-contrast-hsv.c
@@ -249,9 +249,10 @@ gegl_op_class_init (GeglOpClass *klass)
   operation_class->get_cached_region       = get_cached_region;
 
   gegl_operation_class_set_keys (operation_class,
-    "name",        "gegl:stretch-contrast-hsv",
-    "title",       _("Stretch Contrast HSV"),
-    "categories" , "color:enhance",
+    "name",           "gegl:stretch-contrast-hsv",
+    "title",          _("Stretch Contrast HSV"),
+    "categories",     "color:enhance",
+    "reference-hash", "c7802207f601127c78bf11314af1fc16",
     "description",
         _("Scales the components of the buffer to be in the 0.0-1.0 range. "
           "This improves images that make poor use of the available contrast "
diff --git a/operations/common/stretch-contrast.c b/operations/common/stretch-contrast.c
index 8e37fbe64..aac39c43b 100644
--- a/operations/common/stretch-contrast.c
+++ b/operations/common/stretch-contrast.c
@@ -580,7 +580,8 @@ gegl_op_class_init (GeglOpClass *klass)
   gegl_operation_class_set_keys (operation_class,
     "name",        "gegl:stretch-contrast",
     "title",       _("Stretch Contrast"),
-    "categories" , "color:enhance",
+    "categories",     "color:enhance",
+    "reference-hash", "f7d354160b86485163bee6df4c52074c",
     "description",
         _("Scales the components of the buffer to be in the 0.0-1.0 range. "
           "This improves images that make poor use of the available contrast "
diff --git a/operations/external/text.c b/operations/external/text.c
index f0fc442c6..711685657 100644
--- a/operations/external/text.c
+++ b/operations/external/text.c
@@ -380,9 +380,10 @@ gegl_op_class_init (GeglOpClass *klass)
 
   gegl_operation_class_set_keys (operation_class,
     "reference-composition", composition,
-    "title",        _("Render Text"),
-    "name",         "gegl:text",
-    "categories",   "render",
+    "title",          _("Render Text"),
+    "name",           "gegl:text",
+    "categories",     "render",
+    "reference-hash", "a6612efdac71654360b19ccc424ff130",
     "description",  _("Display a string of text using pango and cairo."),
     NULL);
 
diff --git a/operations/seamless-clone/seamless-clone-compose.c 
b/operations/seamless-clone/seamless-clone-compose.c
index ca12cccdf..ddc77a139 100644
--- a/operations/seamless-clone/seamless-clone-compose.c
+++ b/operations/seamless-clone/seamless-clone-compose.c
@@ -96,8 +96,9 @@ gegl_op_class_init (GeglOpClass *klass)
   operation_class->attach = attach;
 
   gegl_operation_class_set_keys (operation_class,
-    "name",        "gegl:seamless-clone-compose",
-    "categories",  "compositors:meta:blend",
+    "name",           "gegl:seamless-clone-compose",
+    "categories",     "compositors:meta:blend",
+    "reference-hash", "53a7f14935f28383e36cd6ff7e4c1a72",
     "description", "Seamless cloning composite operation",
     NULL);
 }
diff --git a/operations/transform/border-align.c b/operations/transform/border-align.c
index a78b86e4b..be3f93ba5 100644
--- a/operations/transform/border-align.c
+++ b/operations/transform/border-align.c
@@ -179,6 +179,7 @@ gegl_op_class_init (GeglOpClass *klass)
     "name", "gegl:border-align",
     "title", _("Border Align"),
     "categories", "transform",
+    "reference-hash", "109c3f3685488a9952ca07ef18387850",
     "description", _("Aligns box of input rectangle with border of compositing target or aux' bounding-box 
border, if aux pad is not connectd the op tries to figure out which bounding box' border applies."),
     NULL);
 }


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