summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/hlsl.void.frag
blob: 9bf06b72652099be5d5a8e5f79128d5b25524795 (plain)
1
2
3
4
5
6
7
8
void foo1() {}
void foo2(void) {}

float4 PixelShaderFunction(float4 input) : COLOR0
{
    foo1();
    foo2();
}