Sign in
dawn
/
dawn
/
45cd391d56356c62c08672f6f86fe7fdd30e4e13
/
.
/
test
/
tint
/
builtins
/
atomicStore
/
array
/
arrays.wgsl
blob: 3415c586302c9ecfa88bbb80ff6b4f66530903cb [
file
] [
log
] [
blame
]
var
<workgroup>
wg
:
array
<
array
<
array
<
atomic
<u32>
,
1
>,
2
>,
3
>;
@compute
@workgroup_size
(
1
)
fn compute_main
()
{
atomicStore
(&
wg
[
2
][
1
][
0
],
1u
);
}