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

LibGL: Implement glHint()

This commit is contained in:
Stephan Unverwerth 2021-05-20 23:20:23 +02:00 committed by Andreas Kling
parent 2a16c8bdb8
commit eed0bcaf42
5 changed files with 55 additions and 3 deletions

View file

@ -62,10 +62,15 @@ GLenum glGetError()
void glFlush()
{
return g_gl_context->gl_flush();
g_gl_context->gl_flush();
}
void glFinish()
{
return g_gl_context->gl_finish();
g_gl_context->gl_finish();
}
void glHint(GLenum target, GLenum mode)
{
g_gl_context->gl_hint(target, mode);
}