summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/attrib.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2016-10-19 17:58:44 -0600
committerBrian Paul <[email protected]>2016-10-28 09:25:29 -0700
commit910bc4d12cdc2b5743ad379fddee45c8b0112762 (patch)
tree520c0173cebbaf9ec7594b0ae671af9afde128c5 /src/mesa/main/attrib.c
parent129da274261b6e79f459e24428591f137bf92ed1 (diff)
mesa: rename gl_vertex_array_object::VertexBinding to BufferBinding
To be a little more understandable. Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r--src/mesa/main/attrib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c
index ff5f0f1f9fe..9c7f5ed0e58 100644
--- a/src/mesa/main/attrib.c
+++ b/src/mesa/main/attrib.c
@@ -1484,7 +1484,7 @@ copy_array_object(struct gl_context *ctx,
for (i = 0; i < ARRAY_SIZE(src->VertexAttrib); i++) {
_mesa_copy_client_array(ctx, &dest->_VertexAttrib[i], &src->_VertexAttrib[i]);
_mesa_copy_vertex_attrib_array(ctx, &dest->VertexAttrib[i], &src->VertexAttrib[i]);
- _mesa_copy_vertex_buffer_binding(ctx, &dest->VertexBinding[i], &src->VertexBinding[i]);
+ _mesa_copy_vertex_buffer_binding(ctx, &dest->BufferBinding[i], &src->BufferBinding[i]);
}
/* _Enabled must be the same than on push */