1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:37:43 +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

@ -164,3 +164,13 @@ void glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
{
g_gl_context->gl_scissor(x, y, width, height);
}
void glPushAttrib(GLbitfield mask)
{
g_gl_context->gl_push_attrib(mask);
}
void glPopAttrib()
{
g_gl_context->gl_pop_attrib();
}