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

LibGL: Add stubs for glPushAttrib and glPopAttrib

This commit is contained in:
Jelle Raaijmakers 2021-12-01 16:59:30 +01:00 committed by Andreas Kling
parent fbed7a5ba8
commit 0453cad46c
5 changed files with 37 additions and 1 deletions

View file

@ -468,6 +468,8 @@ GLAPI void glRasterPos2i(GLint x, GLint y);
GLAPI void glMaterialf(GLenum face, GLenum pname, GLfloat param);
GLAPI void glMaterialfv(GLenum face, GLenum pname, GLfloat const* params);
GLAPI void glLineWidth(GLfloat width);
GLAPI void glPushAttrib(GLbitfield mask);
GLAPI void glPopAttrib();
#ifdef __cplusplus
}