diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-21 21:45:04 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-21 21:45:04 +0100 |
commit | c942585098ac84ae461821cbb8f52dedce7a0da1 (patch) | |
tree | 4fbb783075acb55565df5651b5eadfb55afa004d /src/i965_video.c | |
parent | e8783869ad55d337601b6f6a51c02f6576c64f38 (diff) |
Emit the flush after a potential draw from the BlockHandler.
As the batch submit may not trigger further drawing through flushing the
vertices, pass the requirement to emit the flush down to the submission
routine so that the flush can be appended after the final commands.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/i965_video.c')
-rw-r--r-- | src/i965_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i965_video.c b/src/i965_video.c index 855f0b5d..a5136e06 100644 --- a/src/i965_video.c +++ b/src/i965_video.c @@ -1196,7 +1196,7 @@ I965DisplayVideoTextured(ScrnInfoPtr scrn, if (drm_intel_bufmgr_check_aperture_space(bo_table, ARRAY_SIZE(bo_table)) < 0) { - intel_batch_submit(scrn); + intel_batch_submit(scrn, FALSE); } intel_batch_start_atomic(scrn, 100); |