LibGL: Implement glListBase

This commit is contained in:
Jelle Raaijmakers 2021-12-01 14:34:26 +01:00 committed by Andreas Kling
commit 11fea6b597
Notes: sideshowbarker 2024-07-17 22:52:09 +09:00
5 changed files with 19 additions and 1 deletions

View file

@ -29,6 +29,11 @@ void glDeleteLists(GLuint list, GLsizei range)
return g_gl_context->gl_delete_lists(list, range);
}
void glListBase(GLuint base)
{
return g_gl_context->gl_list_base(base);
}
void glEndList(void)
{
return g_gl_context->gl_end_list();