| 180 | } |
| 181 | |
| 182 | void VertexArray::drawElements(const GLenum mode, const GLsizei count, const GLenum type, const void * indices) const |
| 183 | { |
| 184 | bind(); |
| 185 | glDrawElements(mode, count, type, indices); |
| 186 | } |
| 187 | |
| 188 | void VertexArray::drawElementsBaseVertex(const GLenum mode, const GLsizei count, const GLenum type, const void* indices, const GLint baseVertex) const |
| 189 | { |