mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 18:31:13 +00:00
LibGL: Implement glFlush() and glFinish()
This commit is contained in:
parent
3429b44161
commit
2b9ad11bd8
Notes:
sideshowbarker
2024-07-18 18:09:06 +09:00
Author: https://github.com/sunverwerth
Commit: 2b9ad11bd8
Pull-request: https://github.com/SerenityOS/serenity/pull/7110
5 changed files with 36 additions and 0 deletions
|
@ -59,3 +59,13 @@ GLenum glGetError()
|
|||
{
|
||||
return g_gl_context->gl_get_error();
|
||||
}
|
||||
|
||||
void glFlush()
|
||||
{
|
||||
return g_gl_context->gl_flush();
|
||||
}
|
||||
|
||||
void glFinish()
|
||||
{
|
||||
return g_gl_context->gl_finish();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue