mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-12 21:20:06 +00:00
9 lines
135 B
Plaintext
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);
|
||
|
}
|