mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:57:35 +00:00
LibGL: Implement glDepthFunc
This commit is contained in:
parent
a97dbd2317
commit
5b9c87a8b5
7 changed files with 60 additions and 2 deletions
|
@ -124,3 +124,8 @@ void glDepthRange(GLdouble min, GLdouble max)
|
|||
{
|
||||
g_gl_context->gl_depth_range(min, max);
|
||||
}
|
||||
|
||||
void glDepthFunc(GLenum func)
|
||||
{
|
||||
g_gl_context->gl_depth_func(func);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue