In OpenGL the indices parameter for glDrawElements has two different meanings, depending on if you are using GL_ELEMENT_ARRAY_BUFFER or not.
If you have a VBO bound, then it is the offset to start in that buffer, rather than the buffer itself.
When using PyOpenGL, how can you specify the offset to start at in a glDrawElements call? How can you specify multiple start offsets in a glMultiDrawElements call?
GL_INDEX_ARRAYhas a completely different meaning (per vertex color indices). What you mean isGL_ELEMENT_ARRAY_BUFFER– Christian Rau Jun 21 '11 at 21:30