Creates a compute pass (that executes a compute shader)
The WebGPU context
The compute shader to be executed
Creates a copy pass, copying (in the GPU) the contents of one source buffer into a destination buffer
The WebGPU context
The source buffer (to be copied from)
The destination buffer (to be copied into)
The offset of the source buffer (where to begin copying from)
The offset of the destination buffer (where to begin copying into)
The size/length (in bytes) of the data to copy
Creates a render pass (that executes render operations)
The WebGPU context
The rendering shader
See WgPass.getOutputs
Outputs are a mechanic to use during debugging, to enable that the contents of a buffer can be read on the CPU (and printed) to facilitate debugging
The name of the debugging instance
See WgPass.getOutputs
Generated using TypeDoc
Describes a WebGPU pass that can be used in a WgAlgorithm to create a pipeline