diff options
author | Kenneth Graunke <[email protected]> | 2017-03-12 22:39:51 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-03-12 22:57:46 -0700 |
commit | 920ab07566da8bbc95e12ed36da0c76f342066d9 (patch) | |
tree | 038df460f56eb31a2014697cff665c632e2f6ded | |
parent | 7c282b3ca11aa1d9e05bd7fea19bbf464ac5e6fb (diff) |
i965: Delete unused last_ring local.
Dead since 071d80bde2a78f464a7f54c3e6c6e42845ef52e4, and causing
warnings.
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_batchbuffer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.c b/src/mesa/drivers/dri/i965/intel_batchbuffer.c index 8e449829c08..887504273ab 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c @@ -129,7 +129,6 @@ intel_batchbuffer_require_space(struct brw_context *brw, GLuint sz, if (intel_batchbuffer_space(&brw->batch) < sz) intel_batchbuffer_flush(brw); - enum brw_gpu_ring prev_ring = brw->batch.ring; /* The intel_batchbuffer_flush() calls above might have changed * brw->batch.ring to UNKNOWN_RING, so we need to set it here at the end. */ |