dawn-cmake/test/tint/builtins/atomicStore/array/arrays.wgsl

7 lines
147 B
WebGPU Shading Language

var<workgroup> wg : array<array<array<atomic<u32>, 1>, 2>, 3>;
@compute @workgroup_size(1)
fn compute_main() {
atomicStore(&wg[2][1][0], 1u);
}