2014-01-25 15:00:02 -05:00
|
|
|
uniform sampler2D tex;
|
2014-02-28 11:29:05 -05:00
|
|
|
|
|
|
|
#if __VERSION__ >= 130
|
2014-01-25 15:00:02 -05:00
|
|
|
in vec2 uv;
|
|
|
|
out vec4 FragColor;
|
2014-02-28 11:29:05 -05:00
|
|
|
#else
|
|
|
|
varying vec2 uv;
|
|
|
|
#define FragColor gl_FragColor
|
|
|
|
#endif
|
|
|
|
|
2014-01-25 15:00:02 -05:00
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
vec4 color = texture(tex, uv);
|
|
|
|
if (color.a < 0.5) discard;
|
|
|
|
FragColor = vec4(color.xyz, 1.);
|
|
|
|
}
|