diff options
author | Mattias Andrée <maandree@kth.se> | 2016-08-04 22:31:20 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-08-04 22:31:20 +0200 |
commit | fe683b43918238c6453bf9059fb2e4c04b4dfb44 (patch) | |
tree | c32b9d7b7b044481496afe85478b85ca39ca99b9 /src/types | |
parent | Fix bug: length header should be "ignored" silently (diff) | |
download | coopgammad-fe683b43918238c6453bf9059fb2e4c04b4dfb44.tar.gz coopgammad-fe683b43918238c6453bf9059fb2e4c04b4dfb44.tar.bz2 coopgammad-fe683b43918238c6453bf9059fb2e4c04b4dfb44.tar.xz |
m improvement + bug fix
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/types')
-rw-r--r-- | src/types/output.h | 23 |
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 }; |