mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00
app: migrate ink paint core to iterator api
This commit is contained in:
parent
24fbdfb591
commit
ea9c5e6a49
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue