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

LibGL: Add defines and stubs for glBlendFunc()

This commit is contained in:
Stephan Unverwerth 2021-05-15 22:45:05 +02:00 committed by Linus Groh
parent 1b358d3b94
commit 279737642c
6 changed files with 92 additions and 0 deletions

View file

@ -49,6 +49,7 @@ public:
virtual void gl_new_list(GLuint list, GLenum mode) = 0;
virtual void gl_flush() = 0;
virtual void gl_finish() = 0;
virtual void gl_blend_func(GLenum src_factor, GLenum dst_factor) = 0;
virtual void present() = 0;
};