pixman: Branch 'master'

罗晶华 Jinghua Luo jinghua at kemper.freedesktop.org
Mon Jul 9 23:49:57 PDT 2007


 pixman/pixman-edge.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

New commits:
diff-tree 0f392d81748ab1338d294de96e28c43270f24180 (from bbef73192e558695933d7f05befaa8c18550bb63)
Author: Jinghua Luo <sunmoon1997 at gmail.com>
Date:   Tue Jul 10 14:47:28 2007 +0800

    Fix bug in rasterizeEdges() where the stride should be signed.

diff --git a/pixman/pixman-edge.c b/pixman/pixman-edge.c
index 1b28550..335a25f 100644
--- a/pixman/pixman-edge.c
+++ b/pixman/pixman-edge.c
@@ -128,7 +128,7 @@ fbRasterizeEdges8 (pixman_image_t       
     int fill_start = -1, fill_end = -1;
     int fill_size = 0;
     uint32_t *buf = (image)->bits.bits;		
-    uint32_t stride = (image)->bits.rowstride;	
+    int32_t stride = (image)->bits.rowstride;	
     uint32_t width = (image)->bits.width;
     
     line = buf + pixman_fixed_to_int (y) * stride;


More information about the xorg-commit mailing list