From: Søren Sandmann Pedersen <s...@redhat.com>

Otherwise, accessor functions won't work.
---
 pixman/pixman-access.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/pixman/pixman-access.c b/pixman/pixman-access.c
index 56de711..f1ce0ba 100644
--- a/pixman/pixman-access.c
+++ b/pixman/pixman-access.c
@@ -2425,11 +2425,11 @@ store_scanline_a2b2g2r2 (bits_image_t *  image,
     {
        SPLIT_A (values[i]);
        
-       *(pixel++) =
-           ((a     ) & 0xc0) |
-           ((b >> 2) & 0x30) |
-           ((g >> 4) & 0x0c) |
-           ((r >> 6)       );
+       WRITE (image, pixel++,
+              ((a     ) & 0xc0) |
+              ((b >> 2) & 0x30) |
+              ((g >> 4) & 0x0c) |
+              ((r >> 6)       ));
     }
 }
 
-- 
1.6.0.6

_______________________________________________
Pixman mailing list
Pixman@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/pixman

Reply via email to