1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

LibGL: Implement glDrawElements

This commit is contained in:
Stephan Unverwerth 2021-08-13 15:37:38 +02:00 committed by Andreas Kling
parent e64d0d43d2
commit 949d27f21b
5 changed files with 68 additions and 1 deletions

View file

@ -362,6 +362,7 @@ GLAPI void glVertexPointer(GLint size, GLenum type, GLsizei stride, const void*
GLAPI void glColorPointer(GLint size, GLenum type, GLsizei stride, const void* pointer);
GLAPI void glTexCoordPointer(GLint size, GLenum type, GLsizei stride, const void* pointer);
GLAPI void glDrawArrays(GLenum mode, GLint first, GLsizei count);
GLAPI void glDrawElements(GLenum mode, GLsizei count, GLenum type, const void* indices);
#ifdef __cplusplus
}