xf86-video-intel: uxa/uxa-accel.c

Chris Wilson ickle at kemper.freedesktop.org
Mon May 31 14:10:19 PDT 2010


 uxa/uxa-accel.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1672ee0421a99b745d65d72a3818de01d8100b6b
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Mon May 31 22:08:43 2010 +0100

    uxa: Sign reversal on early break from spans passing the YXband
    
    Introduced with e5c971e7639095d38da3518a5dc404b708d45cfb.
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/uxa/uxa-accel.c b/uxa/uxa-accel.c
index 6ac3e88..e8e8b17 100644
--- a/uxa/uxa-accel.c
+++ b/uxa/uxa-accel.c
@@ -168,7 +168,7 @@ uxa_fill_spans(DrawablePtr pDrawable, GCPtr pGC, int n,
 		} else {
 			pbox = REGION_RECTS(pClip);
 			while (nbox--) {
-				if (pbox->y2 >= fullY1)
+				if (pbox->y2 <= fullY1)
 					break;
 
 				if (pbox->y1 <= fullY1) {


More information about the xorg-commit mailing list