Code

change API: separate functions creating a blur filter, one for a given item, another...
[inkscape.git] / src / color-profile.h
index a6a83ccb57d77664ef77764cac57766ef2e81299..76e25d0655085c8946b6420d3ae13d7a6f734613 100644 (file)
 
 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;