diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-05-31 22:18:43 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-05-31 22:19:49 +0100 |
commit | a386a003e7b0ff7100434dccd51fedd822454a6c (patch) | |
tree | ca2235a0534ff81af7bcb468f21825a8ac39ae36 /uxa | |
parent | 1672ee0421a99b745d65d72a3818de01d8100b6b (diff) |
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@chris-wilson.co.uk>
Diffstat (limited to 'uxa')
-rw-r--r-- | uxa/uxa-accel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uxa/uxa-accel.c b/uxa/uxa-accel.c index e8e8b17a..4e07351e 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) { |