xref: /aosp_15_r20/external/angle/third_party/glslang/src/Test/hlsl.wavequery.frag (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1float4 PixelShaderFunction() : COLOR0
2{
3    if (WaveIsFirstLane())
4    {
5        return float4(1, 2, 3, 4);
6    }
7    else
8    {
9        return float4(4, 3, 2, 1);
10    }
11}
12