10 lines
208 B
Plaintext
10 lines
208 B
Plaintext
uniform sampler2D _MainTex;
|
|
uniform vec4 _TintColor;
|
|
void main ()
|
|
{
|
|
gl_FragData[0] = (((2.0 * gl_Color) * _TintColor) * texture2D (_MainTex, gl_TexCoord[0].xy));
|
|
}
|
|
|
|
|
|
// inputs: 2, stats: 3 alu 1 tex 0 flow
|