10 lines
148 B
Plaintext
10 lines
148 B
Plaintext
|
precision mediump float;
|
||
|
|
||
|
varying vec2 texCoord;
|
||
|
|
||
|
uniform sampler2D Texture;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = texture2D(Texture,texCoord);
|
||
|
}
|