diff options
-rw-r--r-- | src/gallium/drivers/i915/i915_flush.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915/i915_flush.c b/src/gallium/drivers/i915/i915_flush.c index 0dca722d636..8cc31a8e0c4 100644 --- a/src/gallium/drivers/i915/i915_flush.c +++ b/src/gallium/drivers/i915/i915_flush.c @@ -45,10 +45,13 @@ static void i915_flush_pipe( struct pipe_context *pipe, struct i915_context *i915 = i915_context(pipe); enum i915_winsys_flush_flags winsys_flags = I915_FLUSH_ASYNC; + if (!i915->batch) + return; + /* Only shortcut this if we have no fence, otherwise we must flush the * empty batchbuffer to get our fence back. */ - if (!fence && i915->batch && (i915->batch->map == i915->batch->ptr)) { + if (!fence && (i915->batch->map == i915->batch->ptr)) { return; } |