X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fcolor-profile.h;h=76e25d0655085c8946b6420d3ae13d7a6f734613;hb=b53b8aff0aa55c2349ea10992daac23a929ae19f;hp=a6a83ccb57d77664ef77764cac57766ef2e81299;hpb=4eefb060ba4e9d34d04abdb76989376292a6fe9b;p=inkscape.git diff --git a/src/color-profile.h b/src/color-profile.h index a6a83ccb5..76e25d065 100644 --- a/src/color-profile.h +++ b/src/color-profile.h @@ -13,11 +13,21 @@ namespace Inkscape { +enum { + RENDERING_INTENT_UNKNOWN = 0, + RENDERING_INTENT_AUTO = 1, + RENDERING_INTENT_PERCEPTUAL = 2, + RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3, + RENDERING_INTENT_SATURATION = 4, + RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5 +}; + /** Color Profile. */ struct ColorProfile : public SPObject { gchar* href; gchar* local; gchar* name; + gchar* intentStr; guint rendering_intent; #if ENABLE_LCMS cmsHPROFILE profHandle;