[gimp] Bug 727343 - gimp_plug_in_handle_tile_get fails for 64-bit depth images
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 727343 - gimp_plug_in_handle_tile_get fails for 64-bit depth images
- Date: Thu, 10 Apr 2014 12:11:45 +0000 (UTC)
commit 48b01cf29729da6849d7cdfa23ff0d77b9d3702e
Author: Michael Natterer <mitch gimp org>
Date: Thu Apr 10 14:08:47 2014 +0200
Bug 727343 - gimp_plug_in_handle_tile_get fails for 64-bit depth images
libgimp/gimp.c: forgot to double the shared memory size for 64 bit
images.
libgimp/gimp.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libgimp/gimp.c b/libgimp/gimp.c
index 3b2544b..083d0f9 100644
--- a/libgimp/gimp.c
+++ b/libgimp/gimp.c
@@ -119,7 +119,7 @@
**/
-#define TILE_MAP_SIZE (_tile_width * _tile_height * 16)
+#define TILE_MAP_SIZE (_tile_width * _tile_height * 32)
#define ERRMSG_SHM_FAILED "Could not attach to gimp shared memory segment"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]