summaryrefslogtreecommitdiffstats
path: root/src/openvg/qpaintengine_vg.cpp
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2009-08-25 11:10:52 +1000
committerRhys Weatherley <rhys.weatherley@nokia.com>2009-08-25 11:10:52 +1000
commit81c094621d64b5a6547c232c7282582339b16045 (patch)
treeeb51430577968a330061db1f01b7675ecb189b79 /src/openvg/qpaintengine_vg.cpp
parent5770b12325cfde6984721b46d0d1477e275c91ad (diff)
Implement the blur pixmap filter for OpenVG using vgGaussianBlur()
Reviewed-by: Sarah Smith
Diffstat (limited to 'src/openvg/qpaintengine_vg.cpp')
-rw-r--r--src/openvg/qpaintengine_vg.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/openvg/qpaintengine_vg.cpp b/src/openvg/qpaintengine_vg.cpp
index b0e190fe1..5669f45ac 100644
--- a/src/openvg/qpaintengine_vg.cpp
+++ b/src/openvg/qpaintengine_vg.cpp
@@ -3112,6 +3112,8 @@ QPixmapFilter *QVGPaintEngine::createPixmapFilter(int type) const
return new QVGPixmapColorizeFilter;
else if (type == QPixmapFilter::DropShadowFilter)
return new QVGPixmapDropShadowFilter;
+ else if (type == QPixmapFilter::BlurFilter)
+ return new QVGPixmapBlurFilter;
else
#endif
return QPaintEngineEx::createPixmapFilter(type);