X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_noise%2Fdistort.cpp;h=837189edcf69523493260e8b3a17f926ad4df02b;hb=68dcfc249ef35fac4dadc60c3daa7433d212bc4b;hp=4c8f871f42915fb4ef4edcd830c9fedfc36be178;hpb=c74ce4738eff208de3bef4b63929b6975a896e93;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 4c8f871..837189e 100644 --- a/synfig-core/trunk/src/modules/mod_noise/distort.cpp +++ b/synfig-core/trunk/src/modules/mod_noise/distort.cpp @@ -74,7 +74,7 @@ NoiseDistort::NoiseDistort(): } inline Color -NoiseDistort::color_func(const Point &point, float supersample,Context context)const +NoiseDistort::color_func(const Point &point, float /*supersample*/,Context context)const { Color ret(0,0,0,0); @@ -84,7 +84,8 @@ NoiseDistort::color_func(const Point &point, float supersample,Context context)c int i; Time time; time=speed*curr_time; - int smooth((!speed && smooth==3)?5:smooth); + int temp_smooth(smooth); + int smooth((!speed && temp_smooth==3)?5:temp_smooth); { Vector vect(0,0); @@ -120,7 +121,7 @@ NoiseDistort::color_func(const Point &point, float supersample,Context context)c } inline float -NoiseDistort::calc_supersample(const synfig::Point &x, float pw,float ph)const +NoiseDistort::calc_supersample(const synfig::Point &/*x*/, float /*pw*/,float /*ph*/)const { return 0.0f; }