1layout(local_size_x = 16, local_size_y = 16) in;
2
3workgroup int outX, outY, outZ;
4
5void main() {
6 IndirectDispatchArgs[3] args;
7
8 // Use the values from `args` to make the test meaningful.
9 outX = args[0].x;
10 outY = args[1].y;
11 outZ = args[2].z;
12}
13