xref: /aosp_15_r20/external/skia/resources/sksl/compute/ModuleStructInVariable.compute (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1layout(local_size_x = 16, local_size_y = 16) in;
2
3workgroup int outX, outY, outZ;
4
5void main() {
6    IndirectDispatchArgs args = IndirectDispatchArgs(1, 2, 3);
7
8    // Use the values from `args` to make the test meaningful.
9    outX = args.x;
10    outY = args.y;
11    outZ = args.z;
12}
13