mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
LibGL: Implenent glGetBooleanv
This commit is contained in:
parent
5d146628e1
commit
0b67369830
5 changed files with 32 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue