summaryrefslogtreecommitdiff
path: root/src/mesa/vbo/vbo_exec_array.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-02-28 18:34:06 -0700
committerBrian Paul <brianp@vmware.com>2011-02-28 18:34:06 -0700
commit7b3bec87dfb02e8ee43f64da12c928d76883aa61 (patch)
treeab4b647f2b3de73189cc29064c02fbe67ada238a /src/mesa/vbo/vbo_exec_array.c
parent125b4ac7e6745ea60e620fe399db4a90e7bb530e (diff)
vbo: silence unused var warning
Diffstat (limited to 'src/mesa/vbo/vbo_exec_array.c')
-rw-r--r--src/mesa/vbo/vbo_exec_array.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_exec_array.c b/src/mesa/vbo/vbo_exec_array.c
index 457343a1a5..5818b134d3 100644
--- a/src/mesa/vbo/vbo_exec_array.c
+++ b/src/mesa/vbo/vbo_exec_array.c
@@ -52,6 +52,7 @@ check_buffers_are_unmapped(const struct gl_client_array **inputs)
if (inputs[i]) {
struct gl_buffer_object *obj = inputs[i]->BufferObj;
assert(!_mesa_bufferobj_mapped(obj));
+ (void) obj;
}
}
#endif