[gs-cvs] rev 8137 - trunk/gs/src
ray at ghostscript.com
ray at ghostscript.com
Tue Jul 24 14:18:53 PDT 2007
Author: ray
Date: 2007-07-24 14:18:53 -0700 (Tue, 24 Jul 2007)
New Revision: 8137
Modified:
trunk/gs/src/gxmclip.h
Log:
Fix for the clip mask of images being too wide for the fixed size
buffer. New size wide enough for 54 inches at 2400 dpi. Problem
seen at 600 dpi with AC405122 from the PS ATS for customer #951.
Modified: trunk/gs/src/gxmclip.h
===================================================================
--- trunk/gs/src/gxmclip.h 2007-07-24 20:02:20 UTC (rev 8136)
+++ trunk/gs/src/gxmclip.h 2007-07-24 21:18:53 UTC (rev 8137)
@@ -32,7 +32,7 @@
* stack frame.
*/
-#define tile_clip_buffer_request 300
+#define tile_clip_buffer_request 16384 /* enough for 2400 dpi up to 54" wide */
#define tile_clip_buffer_size\
((tile_clip_buffer_request / arch_sizeof_long) * arch_sizeof_long)
typedef struct gx_device_mask_clip_s {
More information about the gs-cvs
mailing list