2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
|
2021-11-19 17:46:13 +00:00
|
|
|
ivec2 tint_atomicCompareExchangeWeak(inout int param_0, int param_1, int param_2) {
|
|
|
|
ivec2 result;
|
|
|
|
result.x = atomicCompSwap(param_0, param_1, param_2);
|
|
|
|
result.y = result.x == param_2 ? 1 : 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
shared int arg_0;
|
2021-11-16 15:15:36 +00:00
|
|
|
void atomicCompareExchangeWeak_89ea3b() {
|
2021-11-19 17:46:13 +00:00
|
|
|
ivec2 res = tint_atomicCompareExchangeWeak(arg_0, 1, 1);
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
|
2022-01-28 22:36:58 +00:00
|
|
|
void compute_main(uint local_invocation_index) {
|
2021-11-16 15:15:36 +00:00
|
|
|
{
|
2021-11-19 17:46:13 +00:00
|
|
|
atomicExchange(arg_0, 0);
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
2022-02-05 00:15:34 +00:00
|
|
|
barrier();
|
2021-11-16 15:15:36 +00:00
|
|
|
atomicCompareExchangeWeak_89ea3b();
|
|
|
|
}
|
|
|
|
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void main() {
|
2022-01-28 22:36:58 +00:00
|
|
|
compute_main(gl_LocalInvocationIndex);
|
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|