Create a new buffer that is exactly like this buffer, except:
The WebGPU context
The shape of the buffer (the number of elements will be calculated from this)
The name of the buffer (especially useful for debugging)
Read this buffer into the CPU. WARNING: This will only work if the buffer is an output buffer (see WgBuffer.createOutput and WgBuffer.cloneOutput)
The offer, in number of elements, where the reading will begin
The length (size), in number of elemets, of the data that will be read
Write into this buffer from the CPU. WARNING: This will only work if the buffer has one of the following features:
The data to write into the buffer
The offset, in bytes, where the writing will being
The size (length), in number of elements, of the data that will be written
The length (in number of elements) of a buffer
Creates an empty storage buffer, to be read/written into in shaders
The WebGPU context
The shape of the buffer (the number of element will be calculated from this)
The constructor for the data (TODO: remove this! can be gotten from data.constructor)
The features of the buffer
The name of the buffer (especially useful for debugging)
Creates an output buffer that cannot be used in shaders, but only:
The WebGPU context
The shape of the buffer (the number of elements will be calculated from this)
The constructor for the data (TODO: remove this! can be gotten from data.constructor)
The name of the buffer (especially useful for debugging)
Creates a storage buffer, to be read/written into in shaders, and initialize it with some data
The WebGPU context
The shape of the buffer (the number of elements will be calculated from this
The constructor for the data (TODO: remove this! can be gotten from data.constructor)
The data to be initially copied into the buffer
The features of the buffer
The name of the buffer (especially useful for debugging)
Creates an uniform buffer
The WebGPU context
The constructor for the data (TODO: remove this! can be gotten from data.constructor)
The data to be initially copied into the buffer
Whether this buffer may be written into
The name of the buffer (especially useful for debugging)
Generated using TypeDoc
WebGPU buffer class, allowing for easy creation and keeping track of GPU buffers