bloat-buster/dependencies/glslang-15.0.0/Test/spv.volatileAtomic.comp
David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

9 lines
135 B
Plaintext

#version 450 core
layout(set=0, binding=3) volatile buffer D { uint d[]; } d;
void main()
{
atomicExchange(d.d[0], 0);
}