diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-08-23 16:25:08 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-08-23 16:26:51 +0100 |
commit | 846436c1a26b2c8a9d787ec707edb075fac57ee0 (patch) | |
tree | 881174483466663f791572df53b8136eb00e0620 /src | |
parent | fc4e81726d03399bfbbba79d2e76556836f03bd2 (diff) |
sna/dri: Make async blits async again
Fixes the regression introduced in
commit 6f5fd772c7ca656b86394a0f036d4e0cf5b33d8e [2.21.13]
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date: Thu Jul 25 08:29:55 2013 +0100
sna/dri: Discard the strict checking for stale bo before performing a blit
which added the sync request flag along the explicit async blit path.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/sna/sna_dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_dri.c b/src/sna/sna_dri.c index 1569251f..ff960759 100644 --- a/src/sna/sna_dri.c +++ b/src/sna/sna_dri.c @@ -1415,7 +1415,7 @@ sna_dri_immediate_blit(struct sna *sna, ret = true; } else { info->bo = __sna_dri_copy_region(sna, draw, NULL, - info->back, info->front, true); + info->back, info->front, false); if (event) DRI2SwapComplete(info->client, draw, 0, 0, 0, DRI2_BLIT_COMPLETE, |