app: adapt to API changes in GEGL
This commit is contained in:
@ -564,7 +564,8 @@ gimp_cage_transform_compute_destination (GimpCageConfig *config,
|
|||||||
rect.x = coords.x;
|
rect.x = coords.x;
|
||||||
rect.y = coords.y;
|
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
|
#endif
|
||||||
|
|
||||||
for (i = 0; i < n_cage_vertices; i++)
|
for (i = 0; i < n_cage_vertices; i++)
|
||||||
|
@ -220,7 +220,8 @@ gimp_operation_tile_sink_process (GeglOperation *operation,
|
|||||||
GeglRectangle rect = { destPR.x, destPR.y, destPR.w, destPR.h };
|
GeglRectangle rect = { destPR.x, destPR.y, destPR.w, destPR.h };
|
||||||
|
|
||||||
gegl_buffer_get (input, &rect, 1.0,
|
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);
|
g_static_mutex_lock (&mutex);
|
||||||
|
Reference in New Issue
Block a user