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

LibGL: Implenent glGetBooleanv

This commit is contained in:
Jesse Buhagiar 2021-08-17 18:38:34 +10:00 committed by Andreas Kling
parent 5d146628e1
commit 0b67369830
5 changed files with 32 additions and 0 deletions

View file

@ -72,6 +72,7 @@ public:
virtual void gl_draw_arrays(GLenum mode, GLint first, GLsizei count) = 0;
virtual void gl_draw_elements(GLenum mode, GLsizei count, GLenum type, const void* indices) = 0;
virtual void gl_color_mask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) = 0;
virtual void gl_get_booleanv(GLenum pname, GLboolean* data) = 0;
virtual void present() = 0;
};