GPUTexture: destroy() method

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

Note: This feature is available in Web Workers.

The destroy() method of the GPUTexture interface destroys the GPUTexture.

Syntax

js
destroy()

Parameters

None.

Return value

None (undefined).

Examples

js
// …

const depthTexture = device.createTexture({
  size: [canvas.width, canvas.height],
  format: "depth24plus",
  usage: GPUTextureUsage.RENDER_ATTACHMENT,
});

// some time later

depthTexture.destroy();

Specifications

See also