mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-17 07:50:04 +00:00
LibGL: Implement glDepthFunc
This commit is contained in:
parent
a97dbd2317
commit
5b9c87a8b5
Notes:
sideshowbarker
2024-07-18 05:30:34 +09:00
Author: https://github.com/sunverwerth
Commit: 5b9c87a8b5
Pull-request: https://github.com/SerenityOS/serenity/pull/9451
Reviewed-by: https://github.com/Quaker762 ✅
Reviewed-by: https://github.com/alimpfard
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