mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:37:46 +00:00
LibGL: Implenent glGetBooleanv
This commit is contained in:
parent
5d146628e1
commit
0b67369830
5 changed files with 32 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue