LibWeb/WebGL: Implement deleteTexture

This commit is contained in:
Luke Wilde 2024-12-05 13:19:29 +00:00 committed by Alexander Kalenik
commit 111c4495d9
Notes: github-actions[bot] 2024-12-05 20:42:43 +00:00
2 changed files with 9 additions and 1 deletions

View file

@ -82,7 +82,7 @@ interface mixin WebGLRenderingContextBase {
undefined deleteProgram(WebGLProgram? program);
[FIXME] undefined deleteRenderbuffer(WebGLRenderbuffer? renderbuffer);
undefined deleteShader(WebGLShader? shader);
[FIXME] undefined deleteTexture(WebGLTexture? texture);
undefined deleteTexture(WebGLTexture? texture);
undefined depthFunc(GLenum func);
undefined depthMask(GLboolean flag);