mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-08 03:48:24 +02:00
i915g: Always set vbo to flush on flushes
Reported-by Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
671018aa99
commit
4407e5078f
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,6 @@ static void i915_flush_pipe( struct pipe_context *pipe,
|
|||
/* If there are no flags, just flush pending commands to hardware:
|
||||
*/
|
||||
FLUSH_BATCH(fence);
|
||||
i915->vbo_flushed = 1;
|
||||
|
||||
I915_DBG(DBG_FLUSH, "%s: #####\n", __FUNCTION__);
|
||||
}
|
||||
|
|
@ -93,5 +92,6 @@ void i915_flush(struct i915_context *i915, struct pipe_fence_handle **fence)
|
|||
struct i915_winsys_batchbuffer *batch = i915->batch;
|
||||
|
||||
batch->iws->batchbuffer_flush(batch, fence);
|
||||
i915->vbo_flushed = 1;
|
||||
i915->hardware_dirty = ~0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue