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

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


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

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

    uxa: Spans, try again to get the early break correct.
    
    Trigger happy bug fixing. The sign *was* right, the endpoint was wrong.
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/uxa/uxa-accel.c b/uxa/uxa-accel.c
index e8e8b17..4e07351 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->y1 > fullY1)
 					break;
 
 				if (pbox->y1 <= fullY1) {


More information about the xorg-commit mailing list