web api instance method
WebGL2RenderingContext: deleteSampler() method
Available in workers
The WebGL2RenderingContext.deleteSampler() method of the
WebGL 2 API deletes a given
WebGLSampler object.
Syntax
deleteSampler(sampler)
Parameters
sampler- : A
WebGLSamplerobject to delete.
- : A
Return value
None (undefined).
Examples
gl must be a WebGL2RenderingContext.
WebGLSampler objects are not available in WebGL 1.
const sampler = gl.createSampler();
// …
gl.deleteSampler(sampler);
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.