summaryrefslogtreecommitdiffstats
path: root/src/sp-object-repr.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/sp-object-repr.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/sp-object-repr.cpp')
-rw-r--r--src/sp-object-repr.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sp-object-repr.cpp b/src/sp-object-repr.cpp
index a4b47ca22..4e417e294 100644
--- a/src/sp-object-repr.cpp
+++ b/src/sp-object-repr.cpp
@@ -53,13 +53,16 @@
#include "sp-fecomposite.h"
#include "sp-feconvolvematrix.h"
#include "sp-fediffuselighting.h"
+#include "sp-fedistantlight.h"
#include "sp-fedisplacementmap.h"
#include "sp-feflood.h"
#include "sp-feimage.h"
#include "sp-femerge.h"
#include "sp-femorphology.h"
#include "sp-feoffset.h"
+#include "sp-fepointlight.h"
#include "sp-fespecularlighting.h"
+#include "sp-fespotlight.h"
#include "sp-fetile.h"
#include "sp-feturbulence.h"
@@ -137,6 +140,7 @@ populate_dtables()
{ "svg:feComposite", SP_TYPE_FECOMPOSITE },
{ "svg:feConvolveMatrix", SP_TYPE_FECONVOLVEMATRIX },
{ "svg:feDiffuseLighting", SP_TYPE_FEDIFFUSELIGHTING },
+ { "svg:feDistantLight", SP_TYPE_FEDISTANTLIGHT },
{ "svg:feDisplacementMap", SP_TYPE_FEDISPLACEMENTMAP },
{ "svg:feFlood", SP_TYPE_FEFLOOD },
{ "svg:feGaussianBlur", SP_TYPE_GAUSSIANBLUR },
@@ -144,7 +148,9 @@ populate_dtables()
{ "svg:feMerge", SP_TYPE_FEMERGE },
{ "svg:feMorphology", SP_TYPE_FEMORPHOLOGY },
{ "svg:feOffset", SP_TYPE_FEOFFSET },
+ { "svg:fePointLight", SP_TYPE_FEPOINTLIGHT },
{ "svg:feSpecularLighting", SP_TYPE_FESPECULARLIGHTING },
+ { "svg:feSpotLight", SP_TYPE_FESPOTLIGHT },
{ "svg:feTile", SP_TYPE_FETILE },
{ "svg:feTurbulence", SP_TYPE_FETURBULENCE },
{ "svg:image", SP_TYPE_IMAGE },