1. Web
  2. Web APIs
  3. GPUBuffer
  4. destroy()

GPUBuffer: destroy() method

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Want more support for this feature? Tell us why.

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 GPUBuffer interface destroys the GPUBuffer.

Syntax

js
destroy()

Parameters

None.

Return value

None (undefined).

Examples

js
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

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /