aboutsummaryrefslogtreecommitdiffstats
path: root/src/types
diff options
context:
space:
mode:
Diffstat (limited to 'src/types')
-rw-r--r--src/types/output.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/types/output.h b/src/types/output.h
index 95270ae..750ec41 100644
--- a/src/types/output.h
+++ b/src/types/output.h
@@ -59,40 +59,41 @@
*/
enum colourspace
{
+
+ /**
+ * Unknown
+ */
+ COLOURSPACE_UNKNOWN = 0,
+
/**
* sRGB with explicit gamut
*/
- COLOURSPACE_SRGB = 0,
+ COLOURSPACE_SRGB = 1,
/**
* sRGB without explicit gamut
*/
- COLOURSPACE_SRGB_SANS_GAMUT = 1,
+ COLOURSPACE_SRGB_SANS_GAMUT = 2,
/**
* RGB (but not sRGB) with known gamut
*/
- COLOURSPACE_RGB = 2,
+ COLOURSPACE_RGB = 3,
/**
* RGB (but not sRGB) without known gamut
*/
- COLOURSPACE_RGB_SANS_GAMUT = 3,
+ COLOURSPACE_RGB_SANS_GAMUT = 4,
/**
* Non-RGB multicolour
*/
- COLOURSPACE_NON_RGB = 4,
+ COLOURSPACE_NON_RGB = 5,
/**
* Greyscale or monochrome
*/
- COLOURSPACE_GREY = 5,
-
- /**
- * Unknown
- */
- COLOURSPACE_UNKNOWN = 6
+ COLOURSPACE_GREY = 6
};