summaryrefslogtreecommitdiff
path: root/data/shaders/default-fragment.glsl
blob: e90adbeb74b7f3f2d408fd850ce8afd9fd929fe0 (plain)
1
2
3
4
5
6
7
8
#version 130

in vec2 frag_tex;
uniform sampler2D color_texture;

void main (void) {
    gl_FragColor = texture2D(color_texture, frag_tex);
}