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

LibGL: Implement glArrayElement

This commit is contained in:
Jesse Buhagiar 2022-03-10 00:11:35 +11:00 committed by Andreas Kling
parent 85985e2cf4
commit 6e9ea2f21f
4 changed files with 44 additions and 1 deletions

View file

@ -680,6 +680,7 @@ GLAPI void glRecti(GLint x1, GLint y1, GLint x2, GLint y2);
GLAPI void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint* params);
GLAPI void glPointSize(GLfloat size);
GLAPI void glClipPlane(GLenum plane, GLdouble const* equation);
GLAPI void glArrayElement(GLint i);
#ifdef __cplusplus
}