#version 150
// uniforms
uniform sampler2D texture_sampler;
// input
varying vec2 frag_uv;
void main() {
gl_FragColor = texture2D(texture_sampler, frag_uv);
if (gl_FragColor.a == 0.0) discard;
}