9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
float4 main
|
|
(
|
|
float4 in_color : COLOR,
|
|
float2 in_tex0 : TEXCOORD0,
|
|
uniform sampler2D tex
|
|
) : COLOR
|
|
{
|
|
return tex2D(tex, in_tex0) * in_color;
|
|
} |