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

LibGL: Implement glColorPointer

This commit is contained in:
Stephan Unverwerth 2021-08-13 13:16:00 +02:00 committed by Andreas Kling
parent 07b9cba6e6
commit f52f40925c
5 changed files with 33 additions and 0 deletions

View file

@ -358,6 +358,7 @@ GLAPI void glDepthMask(GLboolean flag);
GLAPI void glEnableClientState(GLenum cap);
GLAPI void glDisableClientState(GLenum cap);
GLAPI void glVertexPointer(GLint size, GLenum type, GLsizei stride, const void* pointer);
GLAPI void glColorPointer(GLint size, GLenum type, GLsizei stride, const void* pointer);
#ifdef __cplusplus
}