X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fwarp.cpp;h=f11c290ae069e64a5f92bef19163f433a4946c9a;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=2110e0237b73a4274a81b1f53ac49bc3b638147f;hpb=e3dfe7e4df9f65f2331031103453d80c1268a8fd;p=synfig.git diff --git a/synfig-core/trunk/src/modules/lyr_std/warp.cpp b/synfig-core/trunk/src/modules/lyr_std/warp.cpp index 2110e02..f11c290 100644 --- a/synfig-core/trunk/src/modules/lyr_std/warp.cpp +++ b/synfig-core/trunk/src/modules/lyr_std/warp.cpp @@ -1,11 +1,12 @@ /* === S Y N F I G ========================================================= */ /*! \file warp.cpp -** \brief Template File +** \brief Implementation of the "Warp" 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(Warp); SYNFIG_LAYER_SET_NAME(Warp,"warp"); -SYNFIG_LAYER_SET_LOCAL_NAME(Warp,_("Warp")); -SYNFIG_LAYER_SET_CATEGORY(Warp,_("Distortions")); +SYNFIG_LAYER_SET_LOCAL_NAME(Warp,N_("Warp")); +SYNFIG_LAYER_SET_CATEGORY(Warp,N_("Distortions")); SYNFIG_LAYER_SET_VERSION(Warp,"0.1"); SYNFIG_LAYER_SET_CVS_ID(Warp,"$Id$"); @@ -516,7 +517,11 @@ Warp::accelerated_render(Context context,Surface *surface,int quality, const Ren // Real trans_z[4]; Real z,minz(10000000000000.0f),maxz(0); - + //! \todo checking the 4 corners for 0<=z0 && zbr[0]) { @@ -695,7 +706,7 @@ Warp::accelerated_render(Context context,Surface *surface,int quality, const Ren else (*surface)[y][x]=source.cubic_sample(u,v); } - if(y&31==0 && cb) + if((y&31)==0 && cb) { if(!stagetwo.amount_complete(y,surface->get_h())) return false; @@ -729,7 +740,7 @@ Warp::accelerated_render(Context context,Surface *surface,int quality, const Ren else (*surface)[y][x]=source.linear_sample(u,v); } - if(y&31==0 && cb) + if((y&31)==0 && cb) { if(!stagetwo.amount_complete(y,surface->get_h())) return false; @@ -763,7 +774,7 @@ Warp::accelerated_render(Context context,Surface *surface,int quality, const Ren //pen.set_value(source[v][u]); (*surface)[y][x]=source[floor_to_int(v)][floor_to_int(u)]; } - if(y&31==0 && cb) + if((y&31)==0 && cb) { if(!stagetwo.amount_complete(y,surface->get_h())) return false;