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

LibGL: Implement glFlush() and glFinish()

This commit is contained in:
Stephan Unverwerth 2021-05-14 21:47:25 +02:00 committed by Andreas Kling
parent 3429b44161
commit 2b9ad11bd8
5 changed files with 36 additions and 0 deletions

View file

@ -47,6 +47,8 @@ public:
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;
virtual void gl_flush() = 0;
virtual void gl_finish() = 0;
virtual void present() = 0;
};