Enlightenment CVS committal

Author  : kwo
Project : e17
Module  : libs/imlib2

Dir     : e17/libs/imlib2/src/lib


Modified Files:
        rgbadraw.c 


Log Message:
Remove incorrect test in __imlib_copy_alpha_data() (Victor Paesa - bug 475).

===================================================================
RCS file: /cvs/e/e17/libs/imlib2/src/lib/rgbadraw.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- rgbadraw.c  20 May 2007 13:26:25 -0000      1.2
+++ rgbadraw.c  7 May 2008 21:41:44 -0000       1.3
@@ -603,20 +603,17 @@
    /* the pointer jump between lines */
    jump = (src->w - w);
    jump2 = (dst->w - w);
-   /* copy forwards */
-   if (p2 < p1)
-     {
-        /* work our way thru the array */
-        for (yy = 0; yy < h; yy++)
-          {
-             for (xx = 0; xx < w; xx++)
-               {
-                  *p2 = (*p1 & 0xff000000) | (*p2 & 0x00ffffff);
-                  p1++;
-                  p2++;
-               }
-             p1 += jump;
-             p2 += jump2;
-          }
-     }
+
+    /* work our way thru the array */
+    for (yy = 0; yy < h; yy++)
+      {
+         for (xx = 0; xx < w; xx++)
+           {
+              *p2 = (*p1 & 0xff000000) | (*p2 & 0x00ffffff);
+              p1++;
+              p2++;
+           }
+         p1 += jump;
+         p2 += jump2;
+      }
 }



-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to