xkslang/Test/hlsl.intrinsics.barriers.comp

14 строки
246 B
Plaintext
Исходник Постоянная ссылка Обычный вид История

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