Sign in
dawn
/
dawn
/
08f33fe5c6daea5cede4c1a5ac891fd3bf975c31
/
.
/
test
/
tint
/
builtins
/
atomicStore
/
struct
/
array_of_struct.wgsl.expected.wgsl
blob: 1def9bdcfb15a264e1116980adceaf2a43719578 [
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
);
}