Remove useless checks for NULL before freeing
[profile/ivi/pixman.git] / pixman / pixman-edge-imp.h
index d786ea7..a4698ed 100644 (file)
@@ -83,14 +83,6 @@ RASTERIZE_EDGES (pixman_image_t  *image,
 #if N_BITS == 1
            {
 
-#ifdef WORDS_BIGENDIAN
-#   define SCREEN_SHIFT_LEFT(x,n)      ((x) << (n))
-#   define SCREEN_SHIFT_RIGHT(x,n)     ((x) >> (n))
-#else
-#   define SCREEN_SHIFT_LEFT(x,n)      ((x) >> (n))
-#   define SCREEN_SHIFT_RIGHT(x,n)     ((x) << (n))
-#endif
-
 #define LEFT_MASK(x)                                                   \
                (((x) & 0x1f) ?                                         \
                 SCREEN_SHIFT_RIGHT (0xffffffff, (x) & 0x1f) : 0)