GPUBuffer: destroy() method

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

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

Syntax

destroy()

Parameters

None.

Return value

None (Undefined).

Examples

const output = device.createBuffer({
  size: 1000,
  usage: GPUBufferUsage.STORAGE | GPUBufferUsage.COPY_SRC,
});

// some time later

output.destroy();

Specifications

Specification
WebGPU
# dom-gpubuffer-destroy

Browser compatibility

BCD tables only load in the browser

See also