diff --git a/app/gegl/gimpoperationcagetransform.c b/app/gegl/gimpoperationcagetransform.c index 9658e68670..c972cbfcd6 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 46ed9e8f01..2303764293 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);