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

10 lines
152 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()
{
gl_FragColor = texture2D(Texture,texCoord).rgba
}