dawn-cmake/test/tint/builtins/atomicStore/array/aliased_arrays.wgsl.expected.wgsl
Ben Clayton bd8449f37d tint/test: Regenerate expectations
Fix collision of two CLs landing with different expectations.

Change-Id: I44eb904b552f635e37dd51dcc94329fbc34af031
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/94685
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
2022-06-25 00:55:59 +00:00

15 lines
209 B
WebGPU Shading Language

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