summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/hlsl.assoc.frag
blob: 8ce1050cd1b7df487124558ca4fc4a6730ab7bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
float4 PixelShaderFunction(
    float4 a1,
    float4 a2,
    float4 a3,
    float4 a4,
    float4 a5
    ) : COLOR0
{
    a1 = a2 = a3 = a4 = a5;
    return a1 + a2 + a3 + a4 + a5;
}