| 1777 | } |
| 1778 | |
| 1779 | void Graphics::DrawElementsInstanced(GLenum mode, unsigned int count, GLenum type, const void* indices, unsigned int primcount) { |
| 1780 | SetVertexAttribArrays(); |
| 1781 | GL_PERF_START(); |
| 1782 | glDrawElementsInstanced(mode, count, type, indices, primcount); |
| 1783 | GL_PERF_END(); |
| 1784 | } |
| 1785 | |
| 1786 | void Graphics::DrawRangeElements(GLenum mode, unsigned int start, unsigned int end, unsigned int count, GLenum type, const void* indices) { |
| 1787 | SetVertexAttribArrays(); |
no outgoing calls
no test coverage detected