1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:57:46 +00:00

LibGL: Implement glCallLists

This commit is contained in:
Jelle Raaijmakers 2021-12-01 14:28:26 +01:00 committed by Andreas Kling
parent 651ea89094
commit 1056bac49a
5 changed files with 90 additions and 12 deletions

View file

@ -48,6 +48,7 @@ public:
virtual void gl_cull_face(GLenum) = 0;
virtual GLuint gl_gen_lists(GLsizei range) = 0;
virtual void gl_call_list(GLuint list) = 0;
virtual void gl_call_lists(GLsizei n, GLenum type, void const* lists) = 0;
virtual void gl_delete_lists(GLuint list, GLsizei range) = 0;
virtual void gl_end_list(void) = 0;
virtual void gl_new_list(GLuint list, GLenum mode) = 0;