You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
151 B
13 lines
151 B
4 months ago
|
struct S {
|
||
|
float f;
|
||
|
float4 pos : SV_Position;
|
||
|
};
|
||
|
|
||
|
float4 main(int i, S input[3]) : COLOR0
|
||
|
{
|
||
|
S a[3];
|
||
|
input = a;
|
||
|
|
||
|
return a[1].pos;
|
||
|
}
|