mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-28 05:30:33 +00:00
13 lines
151 B
GLSL
13 lines
151 B
GLSL
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;
|
|
}
|