blob: 1845dc3c72830493c7d3154dfed32db96c0d3da6 [file] [log] [blame]
John Kessenich6e1d50a2017-03-09 14:37:32 -07001struct S {
John Kessenich6e1d50a2017-03-09 14:37:32 -07002 float clip0 : SV_ClipDistance0;
LoopDawg307b6502017-07-05 11:33:06 -06003 float clip1 : SV_ClipDistance1;
4 float cull0 : SV_CullDistance0;
5 float cull1 : SV_CullDistance1;
John Kessenich6e1d50a2017-03-09 14:37:32 -07006 int ii : SV_InstanceID;
7};
8
9S main(S ins)
10{
11 S s;
12 return s;
13}