2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
|
2021-11-19 17:46:13 +00:00
|
|
|
shared int arg_0;
|
2021-11-16 15:15:36 +00:00
|
|
|
void atomicSub_77883a() {
|
2021-11-19 17:46:13 +00:00
|
|
|
int res = atomicAdd(arg_0, 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
|
|
|
atomicSub_77883a();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|