1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

LibGL: Implement glIsEnabled()

This commit is contained in:
Jelle Raaijmakers 2021-10-18 01:31:21 +02:00 committed by Brian Gianforcaro
parent b2627c8b74
commit a36ee213b9
5 changed files with 30 additions and 0 deletions

View file

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