summaryrefslogtreecommitdiff
path: root/advanced_opengl/3.blending/shaders/grass.frag
blob: 85c806ff243e6b1b454578f182cb27e94e4aa1cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#version 330 core

out vec4 frag_color;

in vec2 tex_coords;

uniform sampler2D texture1;

void main(void)
{
    vec4 tex_color = texture(texture1, tex_coords);
    if (tex_color.a <= 0.2)
        discard;
    frag_color = tex_color;
}