Revision: 39628
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39628
Author:   mmikkelsen
Date:     2011-08-22 18:56:13 +0000 (Mon, 22 Aug 2011)
Log Message:
-----------
actually, this if is still marginally good to have

Modified Paths:
--------------
    trunk/blender/source/blender/imbuf/intern/filter.c

Modified: trunk/blender/source/blender/imbuf/intern/filter.c
===================================================================
--- trunk/blender/source/blender/imbuf/intern/filter.c  2011-08-22 18:49:42 UTC 
(rev 39627)
+++ trunk/blender/source/blender/imbuf/intern/filter.c  2011-08-22 18:56:13 UTC 
(rev 39628)
@@ -397,10 +397,10 @@
                                        float acc[4]={0,0,0,0};
                                        k = 0;
 
-                                       /*if (check_pixel_assigned(srcbuf, 
srcmask, filter_make_index(x-1, y, width, height), depth, is_float) ||
+                                       if (check_pixel_assigned(srcbuf, 
srcmask, filter_make_index(x-1, y, width, height), depth, is_float) ||
                                                check_pixel_assigned(srcbuf, 
srcmask, filter_make_index(x+1, y, width, height), depth, is_float) ||
                                                check_pixel_assigned(srcbuf, 
srcmask, filter_make_index(x, y-1, width, height), depth, is_float) ||
-                                               check_pixel_assigned(srcbuf, 
srcmask, filter_make_index(x, y+1, width, height), depth, is_float))*/ {
+                                               check_pixel_assigned(srcbuf, 
srcmask, filter_make_index(x, y+1, width, height), depth, is_float)) {
                                                for(i= -n; i<=n; i++) {
                                                        for(j=-n; j<=n; j++) {
                                                                if(i != 0 || j 
!= 0) {

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to