mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:57:43 +00:00
LibGL: Add stubs for glPushAttrib
and glPopAttrib
This commit is contained in:
parent
fbed7a5ba8
commit
0453cad46c
5 changed files with 37 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue