Remove output variables from compute regression tests

Output variables in GLCompute shaders is not supported in Vulkan.
Recent upgrade of spirv-tools revealed this problem.
This commit is contained in:
Greg Fischer 2021-06-15 15:56:27 -06:00
parent a23e143636
commit cd6b2382d0
6 changed files with 212 additions and 348 deletions

View file

@ -1,5 +1,5 @@
float ComputeShaderFunction()
void ComputeShaderFunction()
{
AllMemoryBarrier();
AllMemoryBarrierWithGroupSync();
@ -7,7 +7,5 @@ float ComputeShaderFunction()
DeviceMemoryBarrierWithGroupSync();
GroupMemoryBarrier();
GroupMemoryBarrierWithGroupSync();
return 0.0;
}