diff options
author | Ian Romanick <[email protected]> | 2012-01-23 14:22:38 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-01-24 12:31:04 -0800 |
commit | 09639901530da7df7347428512c2bee86af1ef8e (patch) | |
tree | 1e450926df91d5e243dea0e90d94d036f905106d /src/mesa/main/attrib.c | |
parent | 9be3be3c6654da18466626c2d45ff4d06b5fb953 (diff) |
mesa: Rename gl_array_object::VBOonly to ::ARBsemantics
There are more differences between Apple and ARB than just requiring
that all arrays be stored in VBOs. Additional uses will be added in
following commits.
Also, set the flag at Bind time instead of Gen time. The ARB_vao spec
specifies that behavior.
NOTE: This is a candidate for release branches.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 1c1ee5dde02..1cd1fc46791 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1320,7 +1320,7 @@ copy_array_object(struct gl_context *ctx, /* skip RefCount */ /* In theory must be the same anyway, but on recreate make sure it matches */ - dest->VBOonly = src->VBOonly; + dest->ARBsemantics = src->ARBsemantics; for (i = 0; i < Elements(src->VertexAttrib); i++) _mesa_copy_client_array(ctx, &dest->VertexAttrib[i], &src->VertexAttrib[i]); |