summaryrefslogtreecommitdiffstats
path: root/src/attributes.cpp
diff options
context:
space:
mode:
authorNiko Kiirala <niko@kiirala.com>2007-07-20 19:50:41 +0000
committerkiirala <kiirala@users.sourceforge.net>2007-07-20 19:50:41 +0000
commit91819249206cf3c91511e766415f459512e04f1d (patch)
tree682ebb0363d255c5627d193f2d4b1bf85c88c22b /src/attributes.cpp
parentUpdated the gtkmmified fill and stroke dialog with the filter effects (diff)
downloadinkscape-91819249206cf3c91511e766415f459512e04f1d.tar.gz
inkscape-91819249206cf3c91511e766415f459512e04f1d.zip
Patch from Jean-René Reinhard: support for feDiffuseLighting and
feSpecularLighting filter primitives (bzr r3269)
Diffstat (limited to 'src/attributes.cpp')
-rw-r--r--src/attributes.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/attributes.cpp b/src/attributes.cpp
index 968e38633..025f1991b 100644
--- a/src/attributes.cpp
+++ b/src/attributes.cpp
@@ -213,6 +213,16 @@ static SPStyleProp const props[] = {
{SP_ATTR_XCHANNELSELECTOR, "xChannelSelector"},
{SP_ATTR_YCHANNELSELECTOR, "yChannelSelector"},
//{SP_ATTR_IN2, "in2"},
+ /*feDistantLight*/
+ {SP_ATTR_AZIMUTH, "azimuth"},
+ {SP_ATTR_ELEVATION, "elevation"},
+ /*fePointLight*/
+ {SP_ATTR_Z, "z"},
+ /*feSpotLight*/
+ {SP_ATTR_POINTSATX, "pointsAtX"},
+ {SP_ATTR_POINTSATY, "pointsAtY"},
+ {SP_ATTR_POINTSATZ, "pointsAtZ"},
+ {SP_ATTR_LIMITINGCONEANGLE, "limitingConeAngle"},
/*feFlood*/
{SP_ATTR_FLOODCOLOR, "flood-color"},
{SP_ATTR_FLOODOPACITY, "flood-opacity"},