[gs-cvs] rev 8640 - trunk/gs/src

mvrhel at ghostscript.com mvrhel at ghostscript.com
Mon Apr 14 15:57:22 PDT 2008


Author: mvrhel
Date: 2008-04-14 15:57:22 -0700 (Mon, 14 Apr 2008)
New Revision: 8640

Modified:
   trunk/gs/src/gscspace.h
Log:
Fixed Colorspace enumeration order for debug printing.

Modified: trunk/gs/src/gscspace.h
===================================================================
--- trunk/gs/src/gscspace.h	2008-04-14 04:53:26 UTC (rev 8639)
+++ trunk/gs/src/gscspace.h	2008-04-14 22:57:22 UTC (rev 8640)
@@ -118,8 +118,8 @@
 /* We define the names only for debugging printout. */
 #define GS_COLOR_SPACE_TYPE_NAMES\
   "DeviceGray", "DeviceRGB", "DeviceCMYK", "DevicePixel", "DeviceN",\
-  "ICCBased", "CIEBasedDEFG", "CIEBasedDEF", "CIEBasedABC", "CIEBasedA",\
-  "Separation", "Indexed", "Pattern"
+  "CIEBasedDEFG", "CIEBasedDEF", "CIEBasedABC", "CIEBasedA",\
+  "Separation", "Indexed", "Pattern", "ICCBased"
 
 /* Define an abstract type for color space types (method structures). */
 typedef struct gs_color_space_type_s gs_color_space_type;
@@ -254,11 +254,12 @@
 	gs_cie_def *             def;
 	gs_cie_abc *             abc;
 	gs_cie_a *               a;
-	gs_icc_params            icc;
 	gs_separation_params     separation;
 	gs_device_n_params       device_n;
 	gs_indexed_params        indexed;
 	gs_pattern_params        pattern;
+	gs_icc_params            icc;
+
     } params;
 };
 



More information about the gs-cvs mailing list