summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2010-05-31 22:08:43 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2010-05-31 22:08:43 +0100
commit1672ee0421a99b745d65d72a3818de01d8100b6b (patch)
treed8481efd67ae8f83b815b620a5b693aaf36b6080
parentcd38b705be84901a38380dc2a1b90889b553d565 (diff)
uxa: Sign reversal on early break from spans passing the YXband
Introduced with e5c971e7639095d38da3518a5dc404b708d45cfb. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--uxa/uxa-accel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uxa/uxa-accel.c b/uxa/uxa-accel.c
index 6ac3e88d..e8e8b17a 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) {