X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_filter%2Fblur.cpp;h=d474013e6ed39cd4ebb11b5c20a426796346639f;hb=28f28705612902c15cd0702cc891fba35bf2d2df;hp=c9cabd2eabcaafd38d2393c273b8effa8c7e8e29;hpb=2c43cbfff01496919316f600ee76112be551392d;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_filter/blur.cpp b/synfig-core/trunk/src/modules/mod_filter/blur.cpp index c9cabd2..d474013 100644 --- a/synfig-core/trunk/src/modules/mod_filter/blur.cpp +++ b/synfig-core/trunk/src/modules/mod_filter/blur.cpp @@ -1,4 +1,4 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file blur.cpp ** \brief Template Header ** @@ -30,22 +30,22 @@ #include "blur.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #endif -using namespace sinfg; +using namespace synfig; using namespace etl; using namespace std; @@ -60,16 +60,16 @@ using namespace std; /* -- G L O B A L S --------------------------------------------------------- */ -SINFG_LAYER_INIT(Blur_Layer); -SINFG_LAYER_SET_NAME(Blur_Layer,"blur"); -SINFG_LAYER_SET_LOCAL_NAME(Blur_Layer,_("Blur")); -SINFG_LAYER_SET_CATEGORY(Blur_Layer,_("Blurs")); -SINFG_LAYER_SET_VERSION(Blur_Layer,"0.2"); -SINFG_LAYER_SET_CVS_ID(Blur_Layer,"$Id: blur.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $"); +SYNFIG_LAYER_INIT(Blur_Layer); +SYNFIG_LAYER_SET_NAME(Blur_Layer,"blur"); +SYNFIG_LAYER_SET_LOCAL_NAME(Blur_Layer,_("Blur")); +SYNFIG_LAYER_SET_CATEGORY(Blur_Layer,_("Blurs")); +SYNFIG_LAYER_SET_VERSION(Blur_Layer,"0.2"); +SYNFIG_LAYER_SET_CVS_ID(Blur_Layer,"$Id: blur.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $"); /* -- F U N C T I O N S ----------------------------------------------------- */ -inline void clamp(sinfg::Vector &v) +inline void clamp(synfig::Vector &v) { if(v[0]<0.0)v[0]=0.0; if(v[1]<0.0)v[1]=0.0;