26 lines
393 B
Plaintext
26 lines
393 B
Plaintext
SKIP: FAILED
|
|
|
|
|
|
[[block]]
|
|
struct SB_RW {
|
|
arg_0 : atomic<u32>;
|
|
};
|
|
|
|
[[group(0), binding(0)]] var<storage, read_write> sb_rw : SB_RW;
|
|
|
|
fn atomicOr_5e95d4() {
|
|
var res : u32 = atomicOr(&(sb_rw.arg_0), 1u);
|
|
}
|
|
|
|
[[stage(fragment)]]
|
|
fn fragment_main() {
|
|
atomicOr_5e95d4();
|
|
}
|
|
|
|
[[stage(compute)]]
|
|
fn compute_main() {
|
|
atomicOr_5e95d4();
|
|
}
|
|
|
|
Failed to generate: unable to convert type: __atomic__u32
|