[gegl] softglow: use new iterator api
- From: Øyvind "pippin" Kolås <ok src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl] softglow: use new iterator api
- Date: Wed, 12 Sep 2018 11:54:43 +0000 (UTC)
commit 03005d3e13c03ed414b6b9a46197a8f4558f53c3
Author: Øyvind Kolås <pippin gimp org>
Date: Mon Sep 10 16:49:06 2018 +0200
softglow: use new iterator api
operations/common-gpl3+/softglow.c | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/operations/common-gpl3+/softglow.c b/operations/common-gpl3+/softglow.c
index de3e3e136..256f13c45 100644
--- a/operations/common-gpl3+/softglow.c
+++ b/operations/common-gpl3+/softglow.c
@@ -18,6 +18,7 @@
* Copyright 2013 Téo Mazars <teo mazars ensimag fr>
*/
+#define GEGL_ITERATOR2_API
#include "config.h"
#include <glib/gi18n-lib.h>
@@ -151,7 +152,7 @@ process (GeglOperation *operation,
dest_tmp = gegl_buffer_new (&working_region, babl_format_with_space ("Y' float", space));
iter = gegl_buffer_iterator_new (dest_tmp, &working_region, 0, babl_format_with_space ("Y' float", space),
- GEGL_ACCESS_WRITE, GEGL_ABYSS_NONE);
+ GEGL_ACCESS_WRITE, GEGL_ABYSS_NONE, 2);
gegl_buffer_iterator_add (iter, input, &working_region, 0, babl_format_with_space ("Y' float", space),
GEGL_ACCESS_READ, GEGL_ABYSS_NONE);
@@ -159,8 +160,8 @@ process (GeglOperation *operation,
while (gegl_buffer_iterator_next (iter))
{
gint i;
- gfloat *data_out = iter->data[0];
- gfloat *data_in = iter->data[1];
+ gfloat *data_out = iter->items[0].data;
+ gfloat *data_in = iter->items[1].data;
for (i = 0; i < iter->length; i++)
{
@@ -178,7 +179,7 @@ process (GeglOperation *operation,
dest = grey_blur_buffer (dest_tmp, o->glow_radius, result);
iter = gegl_buffer_iterator_new (output, result, 0, babl_format_with_space ("RGBA float", space),
- GEGL_ACCESS_WRITE, GEGL_ABYSS_NONE);
+ GEGL_ACCESS_WRITE, GEGL_ABYSS_NONE, 3);
gegl_buffer_iterator_add (iter, input, result, 0, babl_format_with_space ("RGBA float", space),
GEGL_ACCESS_READ, GEGL_ABYSS_NONE);
@@ -189,9 +190,9 @@ process (GeglOperation *operation,
while (gegl_buffer_iterator_next (iter))
{
gint i;
- gfloat *data_out = iter->data[0];
- gfloat *data_in = iter->data[1];
- gfloat *data_blur = iter->data[2];
+ gfloat *data_out = iter->items[0].data;
+ gfloat *data_in = iter->items[1].data;
+ gfloat *data_blur = iter->items[2].data;
for (i = 0; i < iter->length; i++)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]