mirror of
https://github.com/RGBCube/serenity
synced 2025-07-03 00:52:12 +00:00
LibGL: Implement glDepthMask
This commit is contained in:
parent
010e344a8e
commit
5f863016ca
7 changed files with 26 additions and 2 deletions
|
@ -89,3 +89,8 @@ void glGetFloatv(GLenum pname, GLfloat* params)
|
|||
{
|
||||
g_gl_context->gl_get_floatv(pname, params);
|
||||
}
|
||||
|
||||
void glDepthMask(GLboolean flag)
|
||||
{
|
||||
g_gl_context->gl_depth_mask(flag);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue