From: Mathias Fröhlich Date: Sun, 4 Feb 2018 12:18:34 +0000 (+0100) Subject: mesa: Fix VAO buffer object tracking. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2f9eb0aad5a0d2177b52a22d012fd53438edf9fe;p=mesa.git 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 Reviewed-by: Brian Paul --- 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);