build_indirect_params.wgsl

Bindings
@group(0)
@binding(1)
var<storage>
indirect_parameters_cpu_metadata:
array<IndirectParametersCpuMetadata>

@group(0)
@binding(2)
var<storage>
indirect_parameters_gpu_metadata:
array<IndirectParametersGpuMetadata>

Shader defs requirments:
š¢ INDEXED
@group(0)
@binding(4)
var<storage, read_write>
indirect_parameters:
array<IndirectParametersIndexed>

Shader defs requirments:
š“ INDEXED
@group(0)
@binding(4)
var<storage, read_write>
indirect_parameters:
array<IndirectParametersNonIndexed>

Functions
@compute
Runs custom parallel code on the GPU, not limited to graphics
@workgroup_size(64)
Defines the size of a thread group. One to three numbers: width (x), height (y), and depth (z). Missing values default to 1