summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 63468e8)
raw | patch | inline | side by side (parent: 63468e8)
author | joncruz <joncruz@users.sourceforge.net> | |
Sat, 21 Mar 2009 07:50:18 +0000 (07:50 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Sat, 21 Mar 2009 07:50:18 +0000 (07:50 +0000) |
src/sp-gradient.h | patch | blob | history |
diff --git a/src/sp-gradient.h b/src/sp-gradient.h
index 3a26f5e5a53d618e6738ec6e958d60a4d873abef..abd44538e71204c6f3c7ce389c75a21777088f0b 100644 (file)
--- a/src/sp-gradient.h
+++ b/src/sp-gradient.h
* \todo fixme: Implement more here (Lauris)
*/
struct SPGradient : public SPPaintServer {
+
/** Reference (href) */
SPGradientReference *ref;
+
/** State in Inkscape gradient system */
guint state : 2;
+
/** gradientUnits attribute */
SPGradientUnits units;
guint units_set : 1;
+
/** gradientTransform attribute */
Geom::Matrix gradientTransform;
guint gradientTransform_set : 1;
+
/** spreadMethod attribute */
SPGradientSpread spread;
guint spread_set : 1;
+
/** Gradient stops */
guint has_stops : 1;
+
/** Composed vector */
SPGradientVector vector;
+
/** Rendered color array (4 * 1024 bytes) */
guchar *color;