bgfx/3rdparty/glslang/Test/hlsl.intrinsics.barriers.comp
Branimir Karadžić f46d6a5803 Added glslang.
2016-12-15 14:19:54 -08:00

14 lines
246 B
Plaintext

float ComputeShaderFunction()
{
AllMemoryBarrier();
AllMemoryBarrierWithGroupSync();
DeviceMemoryBarrier();
DeviceMemoryBarrierWithGroupSync();
GroupMemoryBarrier();
GroupMemoryBarrierWithGroupSync();
return 0.0;
}