mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:57:45 +00:00
LibGL: Implement glHint()
This commit is contained in:
parent
2a16c8bdb8
commit
eed0bcaf42
5 changed files with 55 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue