mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 01:56:38 +00:00
LibGL: Implement glDepthRange
This commit is contained in:
parent
3dd9efd35f
commit
a97dbd2317
Notes:
sideshowbarker
2024-07-18 05:30:38 +09:00
Author: https://github.com/sunverwerth
Commit: a97dbd2317
Pull-request: https://github.com/SerenityOS/serenity/pull/9451
Reviewed-by: https://github.com/Quaker762 ✅
Reviewed-by: https://github.com/alimpfard
7 changed files with 26 additions and 1 deletions
|
@ -74,6 +74,7 @@ public:
|
|||
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 gl_depth_range(GLdouble min, GLdouble max) = 0;
|
||||
|
||||
virtual void present() = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue