| 1763 | } |
| 1764 | |
| 1765 | void Graphics::DrawArrays(GLenum mode, int first, unsigned int count) { |
| 1766 | SetVertexAttribArrays(); |
| 1767 | GL_PERF_START(); |
| 1768 | glDrawArrays(mode, first, count); |
| 1769 | GL_PERF_END(); |
| 1770 | } |
| 1771 | |
| 1772 | void Graphics::DrawElements(GLenum mode, unsigned int count, GLenum type, const void* indices) { |
| 1773 | SetVertexAttribArrays(); |
no outgoing calls
no test coverage detected