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

LibGL: Implement glIsList

This commit is contained in:
Jelle Raaijmakers 2021-12-01 16:27:08 +01:00 committed by Andreas Kling
parent 17c109f5d7
commit 506abf2a61
5 changed files with 15 additions and 0 deletions

View file

@ -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);
}