workGroups
const ivec3 workGroups = ivec3(<groups_x>, <groups_y>, <groups_z>);
Location: *.csh
Defines a fixed number of compute shader work groups to be dispatched. Replace <groups_x>
, <groups_y>
, and <groups_z>
with the number of work groups in each dimension. For more info, see the compute shader section.