mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
LibGL: Implement glListBase
This commit is contained in:
parent
1056bac49a
commit
11fea6b597
Notes:
sideshowbarker
2024-07-17 22:52:09 +09:00
Author: https://github.com/gmta
Commit: 11fea6b597
Pull-request: https://github.com/SerenityOS/serenity/pull/11154
Reviewed-by: https://github.com/sunverwerth ✅
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