app: adapt to API changes in GEGL

This commit is contained in:
Øyvind Kolås 2012-03-26 01:22:17 +01:00
parent 011b058945
commit c93edf59f4
2 changed files with 4 additions and 2 deletions

View File

@ -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++)

View File

@ -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);