Sign in
dawn
/
dawn
/
762e826397ab42b8379d9bf3063117b6530be6a3
/
.
/
test
/
tint
/
builtins
/
atomicStore
/
struct
/
array_of_struct.wgsl
blob: d49a3fd5424b08e4c20a0e80c6c42508cbd00379 [
file
] [
log
] [
blame
]
struct
S
{
x
:
i32
,
a
:
atomic
<u32>
,
y
:
u32
,
};
var
<workgroup>
wg
:
array
<
S
,
10
>;
@compute
@workgroup_size
(
1
)
fn compute_main
()
{
atomicStore
(&
wg
[
4
].
a
,
1u
);
}