GPUTexture: destroy() method

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

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

Specification
WebGPU
# dom-gputexture-destroy

Browser compatibility

BCD tables only load in the browser

See also