Sign in
dawn
/
dawn
/
9be037cf1bcbd4a37d083d079f4e457e2b7f5182
/
.
/
test
/
tint
/
builtins
/
atomicStore
/
struct
/
flat_multiple_atomics.wgsl
blob: b055a8f314f57da7098581aa4a5ec6e812ccd685 [
file
] [
log
] [
blame
]
struct
S
{
x
:
i32
,
a
:
atomic
<u32>
,
b
:
atomic
<u32>
,
};
var
<workgroup>
wg
:
S
;
@compute
@workgroup_size
(
1
)
fn compute_main
()
{
atomicStore
(&
wg
.
a
,
1u
);
atomicStore
(&
wg
.
b
,
2u
);
}