double-hit-balls/assets/shaders/texture-shader.fragment

10 lines
148 B
Plaintext
Executable File

precision mediump float;
varying vec2 texCoord;
uniform sampler2D Texture;
void main()
{
gl_FragColor = texture2D(Texture,texCoord);
}