Delete FB_MASK and FB_ALLONES macros
authorSøren Sandmann Pedersen <sandmann@redhat.com>
Sun, 21 Jun 2009 23:45:29 +0000 (19:45 -0400)
committerSøren Sandmann Pedersen <sandmann@redhat.com>
Mon, 22 Jun 2009 02:36:14 +0000 (22:36 -0400)
pixman/pixman-edge-imp.h
pixman/pixman-private.h

index 477ab6b..79826f2 100644 (file)
@@ -126,7 +126,7 @@ rasterizeEdges (pixman_image_t  *image,
                    a++;
                }
                while (nmiddle--)
-                   WRITE(image, a++, FB_ALLONES);
+                   WRITE(image, a++, 0xffffffff);
                if (endmask)
                    WRITE(image, a, READ(image, a) | endmask);
            }
index c4dbbd9..7128957 100644 (file)
@@ -23,9 +23,6 @@
 #undef DEBUG
 #define DEBUG 0
 
-#define FB_MASK     (0x1f)
-#define FB_ALLONES  ((uint32_t) -1)
-
 /* Memory allocation helpers */
 void *pixman_malloc_ab (unsigned int n, unsigned int b);
 void *pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);