1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

LibWeb/WebGL: Implement WebGLRenderingContextBase.depthRange()

This commit is contained in:
Luke Wilde 2022-06-13 16:55:57 +01:00 committed by Linus Groh
parent d9ef228c76
commit 0805911a93
3 changed files with 15 additions and 0 deletions

View file

@ -40,6 +40,7 @@ public:
void depth_func(GLenum func);
void depth_mask(GLboolean mask);
void depth_range(GLclampf z_near, GLclampf z_far);
void finish();
void flush();