Code

Store cached icons to disk between runs, and invalidate/purge as needed.
[inkscape.git] / src / color.h
index 7fd351360e23ff25068356fd3ae9851dd8e94e46..bebeaec60b4e188bb2dbe7ae8514c6fbb8858b01 100644 (file)
@@ -34,7 +34,6 @@
 #define SP_RGBA32_F_COMPOSE(r,g,b,a) SP_RGBA32_U_COMPOSE (SP_COLOR_F_TO_U (r), SP_COLOR_F_TO_U (g), SP_COLOR_F_TO_U (b), SP_COLOR_F_TO_U (a))
 
 struct SVGICCColor;
-struct SVGDeviceColor;
 
 /**
  * An RGB color with optional icc-color part
@@ -60,7 +59,6 @@ struct SPColor {
     std::string toString() const;
 
     SVGICCColor* icc;
-    SVGDeviceColor* device;
     union {
         float c[3];
     } v;