1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:47:35 +00:00

LibGL: Implement glReadBuffer()

This commit is contained in:
Stephan Unverwerth 2021-05-24 15:24:49 +02:00 committed by Linus Groh
parent 0c6f019285
commit 24e74750d5
5 changed files with 60 additions and 2 deletions

View file

@ -53,6 +53,7 @@ public:
virtual void gl_shade_model(GLenum mode) = 0;
virtual void gl_alpha_func(GLenum func, GLclampf ref) = 0;
virtual void gl_hint(GLenum target, GLenum mode) = 0;
virtual void gl_read_buffer(GLenum mode) = 0;
virtual void present() = 0;
};