mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:38:12 +00:00
LibGL: Implement glListBase
This commit is contained in:
parent
1056bac49a
commit
11fea6b597
5 changed files with 19 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue