11 lines
103 B
Plaintext
11 lines
103 B
Plaintext
struct vOut {
|
|
float4 color : COLOR;
|
|
};
|
|
|
|
float4 main(
|
|
vOut input
|
|
) : COLOR
|
|
{
|
|
return input.color;
|
|
}
|