LibGL: Implement glDepthFunc

This commit is contained in:
Stephan Unverwerth 2021-08-16 17:59:45 +02:00 committed by Andreas Kling
commit 5b9c87a8b5
Notes: sideshowbarker 2024-07-18 05:30:34 +09:00
7 changed files with 60 additions and 2 deletions

View file

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