mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:37:37 +00:00
LibGL: Implement glEnableClientState and glDisableClientState
This commit is contained in:
parent
5f863016ca
commit
886f154c2a
5 changed files with 65 additions and 0 deletions
|
@ -94,3 +94,13 @@ void glDepthMask(GLboolean flag)
|
|||
{
|
||||
g_gl_context->gl_depth_mask(flag);
|
||||
}
|
||||
|
||||
void glEnableClientState(GLenum cap)
|
||||
{
|
||||
g_gl_context->gl_enable_client_state(cap);
|
||||
}
|
||||
|
||||
void glDisableClientState(GLenum cap)
|
||||
{
|
||||
g_gl_context->gl_disable_client_state(cap);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue