Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ComputeShader.Dispatch

Switch to Manual
public function Dispatch(kernelIndex: int, threadsX: int, threadsY: int, threadsZ: int): void;

Parameters

kernelIndex Which kernel to execute. A single compute shader asset can have multiple kernel entry points.
threadsX Work size in X dimension.
threadsY Work size in Y dimension.
threadsZ Work size in Z dimension.

Description

Execute a compute shader.

This functions "runs" the compute shader, with the given work size as indicated by threadsX, threadsY, threadsZ parameters.

See Also: FindKernel, Compute Shaders.