diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-11-04 13:43:03 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-11-04 13:43:03 +0000 |
commit | 567cfa508f788b4dd5de9aafbe2f148bb6a8dbc6 (patch) | |
tree | 9c355b3c03c9ab462be4739a4acf2c0e691f90c8 /src/sna/sna_trapezoids.c | |
parent | 465515a1446fd05fdc4691522803c94515187b4c (diff) |
sna/gen6: Enable spans interface for boxes
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/sna_trapezoids.c')
-rw-r--r-- | src/sna/sna_trapezoids.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sna/sna_trapezoids.c b/src/sna/sna_trapezoids.c index a6b8562e..573841e7 100644 --- a/src/sna/sna_trapezoids.c +++ b/src/sna/sna_trapezoids.c @@ -2494,6 +2494,7 @@ composite_unaligned_boxes(CARD8 op, extents.x1, extents.y1, extents.x2 - extents.x1, extents.y2 - extents.y1, + COMPOSITE_SPANS_RECTILINEAR, &tmp)) { DBG(("%s: composite spans render op not supported\n", __FUNCTION__)); @@ -2790,6 +2791,7 @@ trapezoid_span_converter(CARD8 op, PicturePtr src, PicturePtr dst, extents.x1, extents.y1, extents.x2 - extents.x1, extents.y2 - extents.y1, + 0, &tmp)) { DBG(("%s: fallback -- composite spans render op not supported\n", __FUNCTION__)); @@ -3237,6 +3239,7 @@ trap_span_converter(PicturePtr dst, extents.x1, extents.y1, extents.x2 - extents.x1, extents.y2 - extents.y1, + 0, &tmp)) { DBG(("%s: fallback -- composite spans render op not supported\n", __FUNCTION__)); @@ -3773,6 +3776,7 @@ triangles_span_converter(CARD8 op, PicturePtr src, PicturePtr dst, extents.x1, extents.y1, extents.x2 - extents.x1, extents.y2 - extents.y1, + 0, &tmp)) { DBG(("%s: fallback -- composite spans render op not supported\n", __FUNCTION__)); @@ -4123,6 +4127,7 @@ tristrip_span_converter(CARD8 op, PicturePtr src, PicturePtr dst, extents.x1, extents.y1, extents.x2 - extents.x1, extents.y2 - extents.y1, + 0, &tmp)) { DBG(("%s: fallback -- composite spans render op not supported\n", __FUNCTION__)); |