ClassiCube/misc/ps3/ps_textured.fcg
2023-09-10 11:43:12 +10:00

9 lines
No EOL
154 B
Text

float4 main
(
float4 in_color : COLOR,
float2 in_tex0 : TEXCOORD0,
uniform sampler2D tex
) : COLOR
{
return tex2D(tex, in_tex0) * in_color;
}