mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibGL: Implement glCallLists
This commit is contained in:
parent
651ea89094
commit
1056bac49a
Notes:
sideshowbarker
2024-07-17 22:52:14 +09:00
Author: https://github.com/gmta
Commit: 1056bac49a
Pull-request: https://github.com/SerenityOS/serenity/pull/11154
Reviewed-by: https://github.com/sunverwerth ✅
5 changed files with 90 additions and 12 deletions
|
@ -19,6 +19,11 @@ void glCallList(GLuint list)
|
|||
return g_gl_context->gl_call_list(list);
|
||||
}
|
||||
|
||||
void glCallLists(GLsizei n, GLenum type, void const* lists)
|
||||
{
|
||||
return g_gl_context->gl_call_lists(n, type, lists);
|
||||
}
|
||||
|
||||
void glDeleteLists(GLuint list, GLsizei range)
|
||||
{
|
||||
return g_gl_context->gl_delete_lists(list, range);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue