[gimp] app: migrate ink paint core to iterator api
- From: Øyvind "pippin" Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: migrate ink paint core to iterator api
- Date: Wed, 12 Sep 2018 11:56:00 +0000 (UTC)
commit ea9c5e6a4908cc39d3645cf6012c2773ee894c19
Author: Øyvind Kolås <pippin gimp org>
Date: Tue Sep 11 01:34:17 2018 +0200
app: migrate ink paint core to iterator api
app/paint/gimpink.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/app/paint/gimpink.c b/app/paint/gimpink.c
index ce4e018b21..7531ece643 100644
--- a/app/paint/gimpink.c
+++ b/app/paint/gimpink.c
@@ -20,6 +20,7 @@
#include <string.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
+#define GEGL_ITERATOR2_API
#include <gegl.h>
#include "libgimpmath/gimpmath.h"
@@ -748,12 +749,12 @@ render_blob (GeglBuffer *buffer,
GeglRectangle *roi;
iter = gegl_buffer_iterator_new (buffer, rect, 0, babl_format ("Y float"),
- GEGL_ACCESS_READWRITE, GEGL_ABYSS_NONE);
- roi = &iter->roi[0];
+ GEGL_ACCESS_READWRITE, GEGL_ABYSS_NONE, 1);
+ roi = &iter->items[0].roi;
while (gegl_buffer_iterator_next (iter))
{
- gfloat *d = iter->data[0];
+ gfloat *d = iter->items[0].data;
gint h = roi->height;
gint y;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]