mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:47:45 +00:00
LibGL: Implement glDepthRange
This commit is contained in:
parent
3dd9efd35f
commit
a97dbd2317
7 changed files with 26 additions and 1 deletions
|
@ -119,3 +119,8 @@ void glDisableClientState(GLenum cap)
|
|||
{
|
||||
g_gl_context->gl_disable_client_state(cap);
|
||||
}
|
||||
|
||||
void glDepthRange(GLdouble min, GLdouble max)
|
||||
{
|
||||
g_gl_context->gl_depth_range(min, max);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue