mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 01:29:17 +00:00
LibGL: Implement glDepthMask
This commit is contained in:
parent
010e344a8e
commit
5f863016ca
Notes:
sideshowbarker
2024-07-18 06:58:03 +09:00
Author: https://github.com/sunverwerth
Commit: 5f863016ca
Pull-request: https://github.com/SerenityOS/serenity/pull/9382
Reviewed-by: https://github.com/alimpfard
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