[gimp/gimp-2-10] libgimpcolor: in gimp_adaptive_supersample_area(), use scratch allocator
- From: Ell <ell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gimp-2-10] libgimpcolor: in gimp_adaptive_supersample_area(), use scratch allocator
- Date: Thu, 24 Jan 2019 09:15:52 +0000 (UTC)
commit 14030fc930299da8f5f076b9db06a3235b8300f2
Author: Ell <ell_se yahoo com>
Date: Thu Jan 24 03:32:22 2019 -0500
libgimpcolor: in gimp_adaptive_supersample_area(), use scratch allocator
In gimp_adaptive_supersample_area(), use the scratch allocator for
temporary buffers, instead of the regular allocator.
(cherry picked from commit 33d5eb20903ff3dc686d169aabc600ae873094c3)
libgimpcolor/gimpadaptivesupersample.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/libgimpcolor/gimpadaptivesupersample.c b/libgimpcolor/gimpadaptivesupersample.c
index 0112191511..3b9bedcf41 100644
--- a/libgimpcolor/gimpadaptivesupersample.c
+++ b/libgimpcolor/gimpadaptivesupersample.c
@@ -18,7 +18,7 @@
#include "config.h"
-#include <babl/babl.h>
+#include <gegl.h>
#include <glib-object.h>
#include "libgimpmath/gimpmath.h"
@@ -276,8 +276,8 @@ gimp_adaptive_supersample_area (gint x1,
width = x2 - x1 + 1;
- top_row = g_new (GimpSampleType, sub_pixel_size * width + 1);
- bot_row = g_new (GimpSampleType, sub_pixel_size * width + 1);
+ top_row = gegl_scratch_new (GimpSampleType, sub_pixel_size * width + 1);
+ bot_row = gegl_scratch_new (GimpSampleType, sub_pixel_size * width + 1);
for (x = 0; x < (sub_pixel_size * width + 1); x++)
{
@@ -292,11 +292,11 @@ gimp_adaptive_supersample_area (gint x1,
/* Allocate block matrix */
- block = g_new (GimpSampleType *, sub_pixel_size + 1); /* Rows */
+ block = gegl_scratch_new (GimpSampleType *, sub_pixel_size + 1); /* Rows */
for (y = 0; y < (sub_pixel_size + 1); y++)
{
- block[y] = g_new (GimpSampleType, sub_pixel_size + 1); /* Columns */
+ block[y] = gegl_scratch_new (GimpSampleType, sub_pixel_size + 1); /* Columns */
for (x = 0; x < (sub_pixel_size + 1); x++)
{
@@ -384,11 +384,11 @@ gimp_adaptive_supersample_area (gint x1,
/* Free memory */
for (y = 0; y < (sub_pixel_size + 1); y++)
- g_free (block[y]);
+ gegl_scratch_free (block[y]);
- g_free (block);
- g_free (top_row);
- g_free (bot_row);
+ gegl_scratch_free (block);
+ gegl_scratch_free (top_row);
+ gegl_scratch_free (bot_row);
return num_samples;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]