Sign in
dawn
/
dawn
/
f3593952882dddfecb2d06210f8cc1eb67b952d2
/
.
/
test
/
tint
/
builtins
/
atomicStore
/
struct
/
flat_single_atomic.wgsl.expected.wgsl
blob: 164ad73445257ea9c5dae4a268ac8e8e83096f4e [
file
] [
log
] [
blame
]
struct
S
{
x
:
i32
,
a
:
atomic
<u32>
,
y
:
u32
,
}
var
<workgroup>
wg
:
S
;
@compute
@workgroup_size
(
1
)
fn compute_main
()
{
atomicStore
(&(
wg
.
a
),
1u
);
}