X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_filter%2Fradialblur.cpp;h=6fc20c715000793489fa017375951fd227efb0ea;hb=36d01e1527fda602a9aed07d209eb34e6770bca8;hp=93586fde170354bbc57020b478672caf6a5d5f0b;hpb=21bfc670b83d4c45da9ed1b95063b7e6a007168c;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 93586fd..6fc20c7 100644 --- a/synfig-core/trunk/src/modules/mod_filter/radialblur.cpp +++ b/synfig-core/trunk/src/modules/mod_filter/radialblur.cpp @@ -1,8 +1,8 @@ -/*! ======================================================================== -** Synfig -** Template File -** $Id: radialblur.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $ +/* === S Y N F I G ========================================================= */ +/*! \file radialblur.cpp +** \brief Template Header ** +** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** ** This package is free software; you can redistribute it and/or @@ -14,6 +14,7 @@ ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. +** \endlegal ** ** === N O T E S =========================================================== ** @@ -76,8 +77,8 @@ RadialBlur::set_param(const String & param, const ValueBase &value) IMPORT(origin); IMPORT(size); IMPORT(fade_out); - - return Layer_Composite::set_param(param,value); + + return Layer_Composite::set_param(param,value); } ValueBase @@ -86,18 +87,18 @@ RadialBlur::get_param(const String ¶m)const EXPORT(origin); EXPORT(size); EXPORT(fade_out); - + EXPORT_NAME(); EXPORT_VERSION(); - - return Layer_Composite::get_param(param); + + return Layer_Composite::get_param(param); } Layer::Vocab RadialBlur::get_param_vocab()const { Layer::Vocab ret(Layer_Composite::get_param_vocab()); - + ret.push_back(ParamDesc("origin") .set_local_name(_("Origin")) .set_description(_("Point where you want the origin to be")) @@ -112,7 +113,7 @@ RadialBlur::get_param_vocab()const ret.push_back(ParamDesc("fade_out") .set_local_name(_("Fade Out")) ); - + return ret; } @@ -128,14 +129,14 @@ RadialBlur::accelerated_render(Context context,Surface *surface,int quality, con { if(cb && !cb->amount_complete(0,10000)) return false; - + Surface tmp_surface; - + if(!context.accelerated_render(surface,quality,renddesc,cb)) return false; tmp_surface=*surface; - + int x,y; const Point tl(renddesc.get_tl()); @@ -148,17 +149,17 @@ RadialBlur::accelerated_render(Context context,Surface *surface,int quality, con apen.set_alpha(get_amount()); apen.set_blend_method(get_blend_method()); - + int steps(5); - + if(quality>=9)steps=20; else if(quality>=5)steps=30; else if(quality>=4)steps=60; else if(quality>=3)steps=100; else steps=120; - + Surface::value_prep_type cooker; - + for(y=0,pos[1]=tl[1];y 0) ? 1 : -1; dy = abs(y1 - y0); @@ -217,7 +218,7 @@ RadialBlur::accelerated_render(Context context,Surface *surface,int quality, con poolsize+=1; } } - + while (e >= 0) { y0 += sy; @@ -235,7 +236,7 @@ RadialBlur::accelerated_render(Context context,Surface *surface,int quality, con Point begin,end; begin=pos; end=(pos-origin)*(1.0f-size)+origin; - + Color pool(Color::alpha()); float f,poolsize(0); int i; @@ -244,7 +245,7 @@ RadialBlur::accelerated_render(Context context,Surface *surface,int quality, con { Point loc((end-begin)*f+begin-tl); loc[0]/=pw;loc[1]/=ph; - + if(fade_out) pool+=tmp_surface.linear_sample(loc[0],loc[1])*(i-steps),poolsize+=(i-steps); else