Dispatch(int, int, int, int)
Execute a compute shader.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public void Dispatch(int kernelIndex, int threadGroupsX, int threadGroupsY, int threadGroupsZ)
Parameters
Remarks
This functions "runs" the compute shader, launching the indicated number of compute shader thread groups in the X, Y and Z dimensions. Within each work group, a number of shader invocations ("threads") are made. The work group size is specified in the compute shader itself (using "numthreads" HLSL attribute), and the total amount of compute shader invocations is thus group count multiplied by the thread group size. Work group size can be queried using ComputeShader.GetKernelThreadGroupSizes function.
Additional Resources: ComputeShader.FindKernel, ComputeShader.GetKernelThreadGroupSizes, ComputeShader.DispatchIndirect, Compute Shaders.