summaryrefslogtreecommitdiff
path: root/examples/shaders/fragment-shader.glsl
blob: 9be52f0e8542aeff53b2e3b13d19a7fc9a64f371 (plain)
1
2
3
4
5
6
7
#version 120

uniform sampler2D color_texture;

void main (void) {
    gl_FragColor = texture2D(color_texture, gl_TexCoord[0].st);
}