WebGLRenderingContext: deleteTexture() method

Note: This feature is available in Web Workers.

The WebGLRenderingContext.deleteTexture() method of the WebGL API deletes a given WebGLTexture object. This method has no effect if the texture has already been deleted.

Syntax

js
deleteTexture(texture)

Parameters

texture

A WebGLTexture object to delete.

Return value

None (undefined).

Examples

undefined

Deleting a texture

js
const canvas = document.getElementById("canvas");
const gl = canvas.getContext("webgl");
const texture = gl.createTexture();

// …

gl.deleteTexture(texture);

Specifications

See also