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

LibGL: Implement glGetIntegerv

This commit is contained in:
Jesse Buhagiar 2021-08-17 18:58:21 +10:00 committed by Andreas Kling
parent 0b67369830
commit 8ad42e6771
5 changed files with 28 additions and 0 deletions

View file

@ -100,6 +100,11 @@ void glGetBooleanv(GLenum pname, GLboolean* data)
g_gl_context->gl_get_booleanv(pname, data);
}
void glGetIntegerv(GLenum pname, GLint* data)
{
g_gl_context->gl_get_integerv(pname, data);
}
void glDepthMask(GLboolean flag)
{
g_gl_context->gl_depth_mask(flag);