WebGLRenderingContext: deleteShader() method
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Note: This feature is available inWeb Workers.
TheWebGLRenderingContext.deleteShader() method of theWebGL API marks a givenWebGLShader object for deletion. It will then be deleted whenever theshader is no longer in use. This method has no effect if the shader has already beendeleted, and theWebGLShader is automatically marked for deletion when itis destroyed by the garbage collector.
In this article
Syntax
js
deleteShader(shader)Parameters
shaderA
WebGLShaderobject to delete.
Return value
None (undefined).
Examples
>Deleting a shader
js
gl.deleteShader(shader);Specifications
| Specification |
|---|
| WebGL Specification> # 5.14.9> |