1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:38:12 +00:00

LibGL: Implement glListBase

This commit is contained in:
Jelle Raaijmakers 2021-12-01 14:34:26 +01:00 committed by Andreas Kling
parent 1056bac49a
commit 11fea6b597
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();