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?

link|improve this question

74% accept rate
By the way, GL_INDEX_ARRAY has a completely different meaning (per vertex color indices). What you mean is GL_ELEMENT_ARRAY_BUFFER – Christian Rau Jun 21 '11 at 21:30
yeah I make that typo a thousand times – Will Jun 21 '11 at 21:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.