X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_noise%2Fdistort.cpp;fp=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_noise%2Fdistort.cpp;h=5175bd4c161c172a6d9fbf986cc011edbef86d9f;hb=28f28705612902c15cd0702cc891fba35bf2d2df;hp=fe9eb02facb2fb2c2141354a1fe203923f705917;hpb=2c43cbfff01496919316f600ee76112be551392d;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_noise/distort.cpp b/synfig-core/trunk/src/modules/mod_noise/distort.cpp index fe9eb02..5175bd4 100644 --- a/synfig-core/trunk/src/modules/mod_noise/distort.cpp +++ b/synfig-core/trunk/src/modules/mod_noise/distort.cpp @@ -1,4 +1,4 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file noise.cpp ** \brief blehh ** @@ -30,31 +30,31 @@ #include "distort.h" -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #endif /* === M A C R O S ========================================================= */ -using namespace sinfg; +using namespace synfig; using namespace std; using namespace etl; /* === G L O B A L S ======================================================= */ -SINFG_LAYER_INIT(NoiseDistort); -SINFG_LAYER_SET_NAME(NoiseDistort,"noise_distort"); -SINFG_LAYER_SET_LOCAL_NAME(NoiseDistort,_("Noise Distort")); -SINFG_LAYER_SET_CATEGORY(NoiseDistort,_("Distortions")); -SINFG_LAYER_SET_VERSION(NoiseDistort,"0.0"); -SINFG_LAYER_SET_CVS_ID(NoiseDistort,"$Id: distort.cpp,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $"); +SYNFIG_LAYER_INIT(NoiseDistort); +SYNFIG_LAYER_SET_NAME(NoiseDistort,"noise_distort"); +SYNFIG_LAYER_SET_LOCAL_NAME(NoiseDistort,_("Noise Distort")); +SYNFIG_LAYER_SET_CATEGORY(NoiseDistort,_("Distortions")); +SYNFIG_LAYER_SET_VERSION(NoiseDistort,"0.0"); +SYNFIG_LAYER_SET_CVS_ID(NoiseDistort,"$Id: distort.cpp,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $"); /* === P R O C E D U R E S ================================================= */ @@ -119,27 +119,27 @@ NoiseDistort::color_func(const Point &point, float supersample,Context context)c } inline float -NoiseDistort::calc_supersample(const sinfg::Point &x, float pw,float ph)const +NoiseDistort::calc_supersample(const synfig::Point &x, float pw,float ph)const { return 0.0f; } void -NoiseDistort::set_time(sinfg::Context context, sinfg::Time t)const +NoiseDistort::set_time(synfig::Context context, synfig::Time t)const { curr_time=t; context.set_time(t); } void -NoiseDistort::set_time(sinfg::Context context, sinfg::Time t, const sinfg::Point &point)const +NoiseDistort::set_time(synfig::Context context, synfig::Time t, const synfig::Point &point)const { curr_time=t; context.set_time(t,point); } -sinfg::Layer::Handle -NoiseDistort::hit_check(sinfg::Context context, const sinfg::Point &point)const +synfig::Layer::Handle +NoiseDistort::hit_check(synfig::Context context, const synfig::Point &point)const { if(get_blend_method()==Color::BLEND_STRAIGHT && get_amount()>=0.5) return const_cast(this);