Browse Source

gpu: disable all vertex attributes upon vertex declaration unbind, just

because we don't know yet how to disable them selectively.
legacy
Sam Hocevar sam 12 years ago
parent
commit
add39177c5
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      src/gpu/vertexbuffer.cpp

+ 3
- 0
src/gpu/vertexbuffer.cpp View File

@@ -211,6 +211,9 @@ void VertexDeclaration::Unbind()
#else
/* FIXME: we need to unbind what we bound */
//glDisableVertexAttribArray(m_attrib);
/* FIXME: temporary kludge */
for (int i = 0; i < 12; i++)
glDisableVertexAttribArray(i);
/* FIXME: only useful for VAOs */
//glBindBuffer(GL_ARRAY_BUFFER, 0);
/* Or: */


Loading…
Cancel
Save