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

LibGL: Implement glGetIntegerv

This commit is contained in:
Jesse Buhagiar 2021-08-17 18:58:21 +10:00 committed by Andreas Kling
parent 0b67369830
commit 8ad42e6771
5 changed files with 28 additions and 0 deletions

View file

@ -73,6 +73,7 @@ public:
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 gl_get_integerv(GLenum pname, GLint* data) = 0;
virtual void present() = 0;
};