[gimp/gimp-2-10] plug-ins: migrate ifs compose to new iterator api
- From: Øyvind "pippin" Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gimp-2-10] plug-ins: migrate ifs compose to new iterator api
- Date: Tue, 18 Sep 2018 10:39:21 +0000 (UTC)
commit ccf682052e2278ce5fab409129e60e742711d67d
Author: Øyvind Kolås <pippin gimp org>
Date: Tue Sep 11 02:04:11 2018 +0200
plug-ins: migrate ifs compose to new iterator api
(cherry picked from commit 8edbc0d4912f7e9933b7463c9a75ed49298c04e2)
plug-ins/ifs-compose/ifs-compose.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/plug-ins/ifs-compose/ifs-compose.c b/plug-ins/ifs-compose/ifs-compose.c
index 917957fd96..05e7b57424 100644
--- a/plug-ins/ifs-compose/ifs-compose.c
+++ b/plug-ins/ifs-compose/ifs-compose.c
@@ -27,6 +27,7 @@
* 2. Figure out if we need multiple phases for supersampled brushes.
*/
+#define GEGL_ITERATOR2_API
#include "config.h"
#include <string.h>
@@ -1313,12 +1314,12 @@ ifs_compose (gint32 drawable_id)
GEGL_RECTANGLE (0, band_y,
width, band_height), 0,
format,
- GEGL_ACCESS_WRITE, GEGL_ABYSS_NONE);
- roi = &iter->roi[0];
+ GEGL_ACCESS_WRITE, GEGL_ABYSS_NONE, 1);
+ roi = &iter->items[0].roi;
while (gegl_buffer_iterator_next (iter))
{
- guchar *destrow = iter->data[0];
+ guchar *destrow = iter->items[0].data;
for (j = roi->y; j < (roi->y + roi->height); j++)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]