Fix building the Win32 installer: update Win32 install scripts to remove versions...
[synfig.git] / synfig-core / trunk / src / modules / mod_filter / radialblur.cpp
index 826d34d..494f73f 100644 (file)
@@ -1,6 +1,6 @@
 /* === S Y N F I G ========================================================= */
 /*!    \file radialblur.cpp
-**     \brief Template Header
+**     \brief Implementation of the "Radial Blur" layer
 **
 **     $Id$
 **
@@ -130,6 +130,10 @@ RadialBlur::get_color(Context context, const Point &p)const
 bool
 RadialBlur::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const
 {
+       // don't do anything at quality 10
+       if (quality == 10)
+               return context.accelerated_render(surface,quality,renddesc,cb);
+
        if(cb && !cb->amount_complete(0,10000))
                return false;