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

10 lines
148 B
Plaintext
Raw Normal View History

2017-12-19 10:54:34 +00:00
precision mediump float;
varying vec2 texCoord;
uniform sampler2D Texture;
void main()
{
2017-12-22 18:35:11 +00:00
gl_FragColor = texture2D(Texture,texCoord);
2017-12-19 10:54:34 +00:00
}