summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Fröhlich <mathias.froehlich@web.de>2018-02-04 13:18:34 +0100
committerMathias Fröhlich <mathias.froehlich@web.de>2018-02-09 04:21:36 +0100
commit2f9eb0aad5a0d2177b52a22d012fd53438edf9fe (patch)
tree8da210fa6de69cc50626468d4cdd74b19228fd17
parentd8bca3809db504b919f18f530f4d88f29078a3e5 (diff)
mesa: Fix VAO buffer object tracking.
When changing the attribute binding in the VAO we also need to account for getting rid of non vbo bits from VertexAttribBufferMask. Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de> Reviewed-by: Brian Paul <brianp@vmware.com>
-rw-r--r--src/mesa/main/varray.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c
index b268aaa9a3c..4dfc3546a8c 100644
--- a/src/mesa/main/varray.c
+++ b/src/mesa/main/varray.c
@@ -168,6 +168,8 @@ vertex_attrib_binding(struct gl_context *ctx,
if (_mesa_is_bufferobj(vao->BufferBinding[bindingIndex].BufferObj))
vao->VertexAttribBufferMask |= array_bit;
+ else
+ vao->VertexAttribBufferMask &= ~array_bit;
FLUSH_VERTICES(ctx, _NEW_ARRAY);