summaryrefslogtreecommitdiff
path: root/examples/shader/resources/billboard.frag
blob: 3057f64b0499486a9b069b0f25b0666fc9bbc058 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 150

uniform sampler2D texture;

in vec2 tex_coord;

void main()
{
    // Read and apply a color from the texture
    gl_FragColor = texture2D(texture, tex_coord);
}