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