blob: 93c7eb6fcc6e485bbd28281c5d3ab383ea2e3a26 [file] [log] [blame]
#version 310 es
precision mediump float;
struct SB_RW {
uint arg_0;
};
layout(binding = 0) buffer SB_RW_1 {
uint arg_0;
} sb_rw;
void atomicExchange_d59712() {
uint res = atomicExchange(sb_rw.arg_0, 1u);
}
void fragment_main() {
atomicExchange_d59712();
return;
}
void main() {
fragment_main();
}
#version 310 es
precision mediump float;
struct SB_RW {
uint arg_0;
};
layout(binding = 0) buffer SB_RW_1 {
uint arg_0;
} sb_rw;
void atomicExchange_d59712() {
uint res = atomicExchange(sb_rw.arg_0, 1u);
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void compute_main() {
atomicExchange_d59712();
return;
}
void main() {
compute_main();
}