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

LibGL: Implement glEnableClientState and glDisableClientState

This commit is contained in:
Stephan Unverwerth 2021-08-13 01:36:22 +02:00 committed by Andreas Kling
parent 5f863016ca
commit 886f154c2a
5 changed files with 65 additions and 0 deletions

View file

@ -354,6 +354,8 @@ GLAPI void glBindTexture(GLenum target, GLuint texture);
GLAPI void glActiveTexture(GLenum texture);
GLAPI void glGetFloatv(GLenum pname, GLfloat* params);
GLAPI void glDepthMask(GLboolean flag);
GLAPI void glEnableClientState(GLenum cap);
GLAPI void glDisableClientState(GLenum cap);
#ifdef __cplusplus
}