Sign in
dawn
/
dawn
/
c07de73b0b56efcabc355c2a4df9211dcf1b0f30
/
.
/
test
/
tint
/
builtins
/
atomicStore
/
struct
/
flat_single_atomic.wgsl
blob: e997e8749e466d4e09914bc807ce391206af4c6b [
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
);
}