[Bf-blender-cvs] CVS commit: blender/source/blender/imbuf/intern rectop.c

Kent Mein mein at cs.umn.edu
Tue Aug 31 16:23:29 CEST 2004


sirdude (Kent Mein) 2004/08/31 16:23:29 CEST

  Modified files:
    blender/source/blender/imbuf/intern rectop.c 
  
  Log:
  ok my last little tweak for today ;)
  
  I cleaned up the code a little did a couple of these:
  if (blah > stuff - wah)  blah = stuff - wah;
  
  changed to....
  tmp = stuff - wah;
  if (blah > tmp) blah = tmp;
  
  and combined multiple if statements
  
  Kent
  
  Revision  Changes    Path
  1.4       +19 -15    blender/source/blender/imbuf/intern/rectop.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/imbuf/intern/rectop.c.diff?r1=1.3&r2=1.4&cvsroot=bf-blender>



More information about the Bf-blender-cvs mailing list