pixman: Branch 'master'

Søren Sandmann Pedersen sandmann at kemper.freedesktop.org
Fri Aug 24 14:01:50 PDT 2007


 test/composite-test.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
diff-tree 028993aacb9ec48aa9d347d0d189250b464cf30f (from 341be6a408e86d5b8976e63746e646ef973339bb)
Author: Søren Sandmann <sandmann at redhat.com>
Date:   Fri Aug 24 16:49:29 2007 -0400

    Set accessors for the destination image in composite-test.c

diff --git a/test/composite-test.c b/test/composite-test.c
index cee9609..d6596f4 100644
--- a/test/composite-test.c
+++ b/test/composite-test.c
@@ -122,13 +122,14 @@ main (int argc, char **argv)
 					src,
 					WIDTH * 4);
 
-    pixman_image_set_accessors (src_img, reader, writer);
-    
     dest_img = pixman_image_create_bits (PIXMAN_a8r8g8b8,
 					 WIDTH, HEIGHT,
 					 dest,
 					 WIDTH * 4);
 
+    pixman_image_set_accessors (src_img, reader, writer);
+    pixman_image_set_accessors (dest_img, reader, writer);
+    
     pixman_image_composite (PIXMAN_OP_OVER, src_img, NULL, dest_img,
 			    0, 0, 0, 0, 0, 0, WIDTH, HEIGHT);
 


More information about the xorg-commit mailing list