X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_filter%2Fradialblur.cpp;h=6ecc5bb330c1b37593f322e8883b175506ebe68d;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=0d0126d1568d9a92a827991bfd45693a67608043;hpb=c0250d28ac7fa975aa235cafe9b3fc7494cd5c96;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_filter/radialblur.cpp b/synfig-core/trunk/src/modules/mod_filter/radialblur.cpp index 0d0126d..6ecc5bb 100644 --- a/synfig-core/trunk/src/modules/mod_filter/radialblur.cpp +++ b/synfig-core/trunk/src/modules/mod_filter/radialblur.cpp @@ -1,11 +1,12 @@ /* === S Y N F I G ========================================================= */ /*! \file radialblur.cpp -** \brief Template Header +** \brief Implementation of the "Radial Blur" layer ** ** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007, 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -51,8 +52,8 @@ SYNFIG_LAYER_INIT(RadialBlur); SYNFIG_LAYER_SET_NAME(RadialBlur,"radial_blur"); -SYNFIG_LAYER_SET_LOCAL_NAME(RadialBlur,_("Radial Blur")); -SYNFIG_LAYER_SET_CATEGORY(RadialBlur,_("Blurs")); +SYNFIG_LAYER_SET_LOCAL_NAME(RadialBlur,N_("Radial Blur")); +SYNFIG_LAYER_SET_CATEGORY(RadialBlur,N_("Blurs")); SYNFIG_LAYER_SET_VERSION(RadialBlur,"0.1"); SYNFIG_LAYER_SET_CVS_ID(RadialBlur,"$Id$"); @@ -129,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; @@ -155,7 +160,7 @@ RadialBlur::accelerated_render(Context context,Surface *surface,int quality, con br[1] + ph*(int((rect.get_min()[1]-br[1])/ph+2-1e-6))); // round to nearest integer width and height (should be very - // nearly whole numbers already, but dont want to round 5.99999 + // nearly whole numbers already, but don't want to round 5.99999 // down to 5) int tmp_surface_width = int((tmp_surface_br[0]-tmp_surface_tl[0])/pw + 0.5); int tmp_surface_height = int((tmp_surface_br[1]-tmp_surface_tl[1])/ph + 0.5);