LibGL: Implement glCallLists

This commit is contained in:
Jelle Raaijmakers 2021-12-01 14:28:26 +01:00 committed by Andreas Kling
commit 1056bac49a
Notes: sideshowbarker 2024-07-17 22:52:14 +09:00
5 changed files with 90 additions and 12 deletions

View file

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