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

LibGL: Implenent glGetBooleanv

This commit is contained in:
Jesse Buhagiar 2021-08-17 18:38:34 +10:00 committed by Andreas Kling
parent 5d146628e1
commit 0b67369830
5 changed files with 32 additions and 0 deletions

View file

@ -95,6 +95,11 @@ void glGetFloatv(GLenum pname, GLfloat* params)
g_gl_context->gl_get_floatv(pname, params);
}
void glGetBooleanv(GLenum pname, GLboolean* data)
{
g_gl_context->gl_get_booleanv(pname, data);
}
void glDepthMask(GLboolean flag)
{
g_gl_context->gl_depth_mask(flag);