11 lines
177 B
Plaintext
11 lines
177 B
Plaintext
|
precision mediump float;
|
||
|
|
||
|
varying vec2 texCoord;
|
||
|
|
||
|
uniform sampler2D Texture;
|
||
|
uniform vec4 Color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = texture2D(Texture,texCoord) * Color;
|
||
|
}
|