web api instance method
GPUTexture: destroy() method
Secure contextAvailable in workers
The destroy() method of the
GPUTexture interface destroys the GPUTexture.
Syntax
destroy()
Parameters
None.
Return value
None (undefined).
Examples
// …
const depthTexture = device.createTexture({
size: [canvas.width, canvas.height],
format: "depth24plus",
usage: GPUTextureUsage.RENDER_ATTACHMENT,
});
// some time later
depthTexture.destroy();
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The WebGPU API