diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-04 17:40:58 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-04 17:40:58 +0100 |
commit | 54ee41bf05e328ed2f2cd2a64c21afe3efe2556a (patch) | |
tree | 5bbda36ff620b2f637c763a94a22bf9c5b2a56b6 /src/sna/sna_trapezoids.c | |
parent | d36623aaebdc454bd281f34332edcad5d94f34c0 (diff) |
sna: Pass a hint to the backends when using copy_boxes for readback
If we expect to only emit this set of copy_boxes() and then submit the
batch, we would prefer to use the BLT for its lower latency.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sna/sna_trapezoids.c b/src/sna/sna_trapezoids.c index 36defa10..d83c083c 100644 --- a/src/sna/sna_trapezoids.c +++ b/src/sna/sna_trapezoids.c @@ -5779,7 +5779,7 @@ trap_mask_converter(PicturePtr picture, sna->render.copy_boxes(sna, GXcopy, scratch, sna_pixmap_get_bo(scratch), -extents.x1, -extents.x1, pixmap, priv->gpu_bo, x, y, - &extents, 1); + &extents, 1, 0); mark_damaged(pixmap, priv, &extents ,x, y); screen->DestroyPixmap(scratch); @@ -5857,7 +5857,7 @@ trap_upload(PicturePtr picture, sna->render.copy_boxes(sna, GXcopy, scratch, sna_pixmap_get_bo(scratch), -extents.x1, -extents.x1, pixmap, priv->gpu_bo, x, y, - &extents, 1); + &extents, 1, 0); mark_damaged(pixmap, priv, &extents, x, y); screen->DestroyPixmap(scratch); |