[gimp/goat-invasion: 42/526] app: implement gimp_channel_real_clear() with GEGL
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/goat-invasion: 42/526] app: implement gimp_channel_real_clear() with GEGL
- Date: Sun, 22 Apr 2012 13:02:48 +0000 (UTC)
commit d362fc56304f356f6db95516fed29d87abc5ea73
Author: Michael Natterer <mitch gimp org>
Date: Thu Mar 15 10:35:06 2012 +0100
app: implement gimp_channel_real_clear() with GEGL
app/core/gimpchannel.c | 24 +++++++++---------------
1 files changed, 9 insertions(+), 15 deletions(-)
---
diff --git a/app/core/gimpchannel.c b/app/core/gimpchannel.c
index 9c6e215..3ac6e1b 100644
--- a/app/core/gimpchannel.c
+++ b/app/core/gimpchannel.c
@@ -1316,8 +1316,6 @@ gimp_channel_real_clear (GimpChannel *channel,
const gchar *undo_desc,
gboolean push_undo)
{
- PixelRegion maskPR;
-
if (push_undo)
{
if (! undo_desc)
@@ -1332,22 +1330,18 @@ gimp_channel_real_clear (GimpChannel *channel,
if (channel->bounds_known && ! channel->empty)
{
- pixel_region_init (&maskPR,
- gimp_drawable_get_tiles (GIMP_DRAWABLE (channel)),
- channel->x1, channel->y1,
- channel->x2 - channel->x1,
- channel->y2 - channel->y1, TRUE);
- clear_region (&maskPR);
+ GeglRectangle rect = { channel->x1,
+ channel->y1,
+ channel->x2 - channel->x1,
+ channel->y2 - channel->y1 };
+
+ gegl_buffer_clear (gimp_drawable_get_write_buffer (GIMP_DRAWABLE (channel)),
+ &rect);
}
else
{
- /* clear the mask */
- pixel_region_init (&maskPR,
- gimp_drawable_get_tiles (GIMP_DRAWABLE (channel)),
- 0, 0,
- gimp_item_get_width (GIMP_ITEM (channel)),
- gimp_item_get_height (GIMP_ITEM (channel)), TRUE);
- clear_region (&maskPR);
+ gegl_buffer_clear (gimp_drawable_get_write_buffer (GIMP_DRAWABLE (channel)),
+ NULL);
}
/* we know the bounds */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]