[gimp] app: don't dup the TempBuf in gimp_temp_buf_create_buffer()



commit 42713a953bd4133cece8e3dd74a5b3d07ab4502c
Author: Michael Natterer <mitch gimp org>
Date:   Sat Mar 31 15:38:51 2012 +0200

    app: don't dup the TempBuf in gimp_temp_buf_create_buffer()
    
    so this function now creates a buffer on a temp_buf is doesn't own.

 app/gegl/gimp-gegl-utils.c |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)
---
diff --git a/app/gegl/gimp-gegl-utils.c b/app/gegl/gimp-gegl-utils.c
index f494c23..0ee4f2c 100644
--- a/app/gegl/gimp-gegl-utils.c
+++ b/app/gegl/gimp-gegl-utils.c
@@ -202,27 +202,28 @@ GeglBuffer  *
 gimp_temp_buf_create_buffer (TempBuf    *temp_buf,
                              const Babl *format)
 {
-  TempBuf    *new;
   GeglBuffer *buffer;
-  gint        width, height;
+  gint        width, height, bytes;
 
   g_return_val_if_fail (temp_buf != NULL, NULL);
-  g_return_val_if_fail (format != NULL, NULL);
-  g_return_val_if_fail (babl_format_get_bytes_per_pixel (format) ==
+  g_return_val_if_fail (format == NULL ||
+                        babl_format_get_bytes_per_pixel (format) ==
                         temp_buf->bytes, NULL);
 
   width  = temp_buf->width;
   height = temp_buf->height;
+  bytes  = temp_buf->bytes;
 
-  new = temp_buf_copy (temp_buf, NULL);
+  if (! format)
+    format = gimp_bpp_to_babl_format (bytes);
 
-  buffer = gegl_buffer_linear_new_from_data (temp_buf_get_data (new),
+  buffer = gegl_buffer_linear_new_from_data (temp_buf_get_data (temp_buf),
                                              format,
                                              GIMP_GEGL_RECT (0, 0, width, height),
-                                             width * new->bytes,
-                                             (GDestroyNotify) temp_buf_free, new);
+                                             width * bytes,
+                                             NULL, NULL);
 
-  g_object_set_data (G_OBJECT (buffer), "gimp-temp-buf", new);
+  g_object_set_data (G_OBJECT (buffer), "gimp-temp-buf", temp_buf);
 
   return buffer;
 }



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