1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:27:34 +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

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