[gimp/goat-invasion: 62/73] app: use gegl_buffer_copy() in gimp_drawable_resize()



commit bffe3d640a7c1dc3fe795c6254bdc332fd14c8eb
Author: Michael Natterer <mitch gimp org>
Date:   Thu Mar 15 21:55:38 2012 +0100

    app: use gegl_buffer_copy() in gimp_drawable_resize()

 app/core/gimpdrawable.c |   30 +++++++++++++++++-------------
 1 files changed, 17 insertions(+), 13 deletions(-)
---
diff --git a/app/core/gimpdrawable.c b/app/core/gimpdrawable.c
index 77a26b3..088d8e8 100644
--- a/app/core/gimpdrawable.c
+++ b/app/core/gimpdrawable.c
@@ -542,7 +542,7 @@ gimp_drawable_resize (GimpItem    *item,
                       gint         offset_y)
 {
   GimpDrawable *drawable = GIMP_DRAWABLE (item);
-  PixelRegion   srcPR, destPR;
+  PixelRegion   destPR;
   TileManager  *new_tiles;
   gint          new_offset_x;
   gint          new_offset_y;
@@ -596,20 +596,24 @@ gimp_drawable_resize (GimpItem    *item,
   /*  Determine whether anything needs to be copied  */
   if (copy_width && copy_height)
     {
-      pixel_region_init (&srcPR,
-                         gimp_drawable_get_tiles (drawable),
-                         copy_x - gimp_item_get_offset_x (item),
-                         copy_y - gimp_item_get_offset_y (item),
-                         copy_width,
-                         copy_height,
-                         FALSE);
+      GeglBuffer    *dest_buffer;
+      GeglRectangle  src_rect;
+      GeglRectangle  dest_rect;
 
-      pixel_region_init (&destPR, new_tiles,
-                         copy_x - new_offset_x, copy_y - new_offset_y,
-                         copy_width, copy_height,
-                         TRUE);
+      dest_buffer = gimp_tile_manager_create_buffer (new_tiles, TRUE);
+
+      src_rect.x      = copy_x - gimp_item_get_offset_x (item);
+      src_rect.y      = copy_y - gimp_item_get_offset_y (item);
+      src_rect.width  = copy_width;
+      src_rect.height = copy_height;
 
-      copy_region (&srcPR, &destPR);
+      dest_rect.x = copy_x - new_offset_x;
+      dest_rect.y = copy_y - new_offset_y;
+
+      gegl_buffer_copy (gimp_drawable_get_read_buffer (drawable), &src_rect,
+                        dest_buffer, &dest_rect);
+
+      g_object_unref (dest_buffer);
     }
 
   gimp_drawable_set_tiles_full (drawable, gimp_item_is_attached (item), NULL,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]