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

LibGL: Implement glDepthFunc

This commit is contained in:
Stephan Unverwerth 2021-08-16 17:59:45 +02:00 committed by Andreas Kling
parent a97dbd2317
commit 5b9c87a8b5
7 changed files with 60 additions and 2 deletions

View file

@ -75,6 +75,7 @@ public:
virtual void gl_get_booleanv(GLenum pname, GLboolean* data) = 0;
virtual void gl_get_integerv(GLenum pname, GLint* data) = 0;
virtual void gl_depth_range(GLdouble min, GLdouble max) = 0;
virtual void gl_depth_func(GLenum func) = 0;
virtual void present() = 0;
};