blob: d1437f0645213fcc3e99400e19dc880ad235577b [file] [log] [blame]
John Kessenich66011cb2018-03-06 16:12:04 -07001float4 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}