1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00

LibGL: Implement glCallLists

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