mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:28:11 +00:00
LibGL: Implement glCallLists
This commit is contained in:
parent
651ea89094
commit
1056bac49a
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