ReadonlymapThe mapState read-only property of the GPUBuffer interface represents the mapped state of the GPUBuffer.
ReadonlysizeThe size read-only property of the GPUBuffer interface represents the length of the GPUBuffer's memory allocation, in bytes.
ReadonlyusageThe usage read-only property of the GPUBuffer interface contains the bitwise flags representing the allowed usages of the GPUBuffer.
The destroy() method of the GPUBuffer interface destroys the GPUBuffer.
The getMappedRange() method of the GPUBuffer interface returns an ArrayBuffer containing the mapped contents of the GPUBuffer in the specified range.
Optionaloffset: numberOptionalsize: numberThe mapAsync() method of the GPUBuffer interface maps the specified range of the GPUBuffer. It returns a Promise that resolves when the GPUBuffer's content is ready to be accessed. While the GPUBuffer is mapped it cannot be used in any GPU commands.
Optionaloffset: numberOptionalsize: numberThe unmap() method of the GPUBuffer interface unmaps the mapped range of the GPUBuffer, making its contents available for use by the GPU again after it has previously been mapped with GPUBuffer.mapAsync() (the GPU cannot access a mapped GPUBuffer).
The
GPUBufferinterface of the WebGPU API represents a block of memory that can be used to store raw data to use in GPU operations. Available only in secure contexts.MDN Reference