1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +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

@ -35,6 +35,7 @@ interface mixin WebGLRenderingContextBase {
undefined depthFunc(GLenum func);
undefined depthMask(GLboolean flag);
undefined depthRange(GLclampf zNear, GLclampf zFar);
undefined finish();
undefined flush();