[gimp] app: adapt to API changes in GEGL



commit c93edf59f45d0855dc48beedccfe8530d69c22cd
Author: Ãyvind KolÃs <pippin gimp org>
Date:   Mon Mar 26 01:22:17 2012 +0100

    app: adapt to API changes in GEGL

 app/gegl/gimpoperationcagetransform.c |    3 ++-
 app/gegl/gimpoperationtilesink.c      |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/app/gegl/gimpoperationcagetransform.c b/app/gegl/gimpoperationcagetransform.c
index 9658e68..c972cbf 100644
--- a/app/gegl/gimpoperationcagetransform.c
+++ b/app/gegl/gimpoperationcagetransform.c
@@ -564,7 +564,8 @@ gimp_cage_transform_compute_destination (GimpCageConfig *config,
     rect.x      = coords.x;
     rect.y      = coords.y;
 
-    gegl_buffer_get (coef_buf, &rect, 1.0, format_coef, coef, GEGL_AUTO_ROWSTRIDE);
+    gegl_buffer_get (coef_buf, &rect, 1.0, format_coef, coef,
+                     GEGL_AUTO_ROWSTRIDE, GEGL_ABYSS_NONE);
   #endif
 
   for (i = 0; i < n_cage_vertices; i++)
diff --git a/app/gegl/gimpoperationtilesink.c b/app/gegl/gimpoperationtilesink.c
index 46ed9e8..2303764 100644
--- a/app/gegl/gimpoperationtilesink.c
+++ b/app/gegl/gimpoperationtilesink.c
@@ -220,7 +220,8 @@ gimp_operation_tile_sink_process (GeglOperation       *operation,
       GeglRectangle rect = { destPR.x, destPR.y, destPR.w, destPR.h };
 
       gegl_buffer_get (input, &rect, 1.0,
-                       format, destPR.data, destPR.rowstride);
+                       format, destPR.data, destPR.rowstride,
+                       GEGL_ABYSS_NONE);
     }
 
   g_static_mutex_lock (&mutex); 



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