9 lines
105 B
Plaintext
9 lines
105 B
Plaintext
|
struct PS_INPUT
|
||
|
{
|
||
|
float4 vColor0 : COLOR0;
|
||
|
};
|
||
|
|
||
|
float4 main( PS_INPUT i ) : COLOR
|
||
|
{
|
||
|
return i.vColor0;
|
||
|
}
|