mirror of
https://github.com/libretro/glslang.git
synced 2024-12-13 19:23:20 +00:00
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
|
#version 430 core
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
memoryBarrierAtomicCounter();
|
||
|
memoryBarrierBuffer();
|
||
|
memoryBarrierShared();
|
||
|
memoryBarrierImage();
|
||
|
groupMemoryBarrier();
|
||
|
}
|