LibGL: Implement glDepthMask

This commit is contained in:
Stephan Unverwerth 2021-08-13 01:06:26 +02:00 committed by Andreas Kling
commit 5f863016ca
Notes: sideshowbarker 2024-07-18 06:58:03 +09:00
7 changed files with 26 additions and 2 deletions

View file

@ -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);
}