diff options
author | Jakob Bornecrantz <wallbraker@gmail.com> | 2009-02-24 23:58:11 +0100 |
---|---|---|
committer | Jakob Bornecrantz <wallbraker@gmail.com> | 2009-02-25 02:00:29 +0100 |
commit | f0d09bfc1cb775ba6f9c0c3899f4ee5afa26ee46 (patch) | |
tree | 5648ad4aeeab88090649ead0a0500a37af5c6ca5 | |
parent | c92dc32dc26263c28a3446bc4829cfd972c8252b (diff) |
i915: Fix some warnings
-rw-r--r-- | src/gallium/drivers/i915simple/i915_state_emit.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/i915simple/i915_state_emit.c b/src/gallium/drivers/i915simple/i915_state_emit.c index 26e03f5127..1e1fb968b4 100644 --- a/src/gallium/drivers/i915simple/i915_state_emit.c +++ b/src/gallium/drivers/i915simple/i915_state_emit.c @@ -214,7 +214,6 @@ i915_emit_hardware_state(struct i915_context *i915 ) unsigned ctile = BUF_3D_USE_FENCE; struct i915_texture *tex = (struct i915_texture *) cbuf_surface->texture; - struct pipe_buffer *buffer = tex->buffer; assert(tex); if (tex && tex->tiled) { @@ -238,7 +237,6 @@ i915_emit_hardware_state(struct i915_context *i915 ) unsigned ztile = BUF_3D_USE_FENCE; struct i915_texture *tex = (struct i915_texture *) depth_surface->texture; - struct pipe_buffer *buffer = tex->buffer; assert(tex); if (tex && tex->tiled) { |