#extension Atomic counters
Can we get atomic counters in Jitter?
I'm trying this:
#version 420
#extension GL_ARB_shader_atomic_counter : enable
layout(binding=0, offset=0) uniform atomic_uint acc;
and then I try to increment like this:
uint counter = atomicCounterIncrement(acc);
But the buffer is always empty...
Thanks!
bump