mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibGL: Implement glIsList
This commit is contained in:
parent
17c109f5d7
commit
506abf2a61
5 changed files with 15 additions and 0 deletions
|
@ -43,3 +43,8 @@ void glNewList(GLuint list, GLenum mode)
|
|||
{
|
||||
return g_gl_context->gl_new_list(list, mode);
|
||||
}
|
||||
|
||||
GLboolean glIsList(GLuint list)
|
||||
{
|
||||
return g_gl_context->gl_is_list(list);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue