Merge pull request #314 from mre4ce/master
[platform/upstream/glslang.git] / Test / hlsl.void.frag
1 void foo1() {}
2 void foo2(void) {}
3
4 float4 PixelShaderFunction(float4 input) : COLOR0
5 {
6     foo1();
7     foo2();
8 }