blob: d9921f30e6ea8bca269194be69231a87bce4255d [file] [log] [blame]
steve-lunarg65cdff92017-01-19 15:18:00 -07001struct S {
2 float f;
3 float4 pos : SV_Position;
4};
5
6float4 main(int i, S input[3]) : COLOR0
7{
8 S a[3];
9 input = a;
10
John Kessenich778806a2017-08-19 17:29:44 -060011 return a[1].pos;
steve-lunarg65cdff92017-01-19 15:18:00 -070012}