mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:57:35 +00:00
LibGL: Implement glIsEnabled()
This commit is contained in:
parent
b2627c8b74
commit
a36ee213b9
5 changed files with 30 additions and 0 deletions
|
@ -20,6 +20,11 @@ void glDisable(GLenum cap)
|
|||
g_gl_context->gl_disable(cap);
|
||||
}
|
||||
|
||||
GLboolean glIsEnabled(GLenum cap)
|
||||
{
|
||||
return g_gl_context->gl_is_enabled(cap);
|
||||
}
|
||||
|
||||
void glFrontFace(GLenum mode)
|
||||
{
|
||||
g_gl_context->gl_front_face(mode);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue