aboutsummaryrefslogtreecommitdiff
path: root/shaders/fragment.frag
blob: b078a58d730253a4d96fe28ff3a780199ab36bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core

in vec2 texcoord_frag;

out vec4 out_color;

uniform sampler2D tex;

void main() {
    out_color = texture(tex, texcoord_frag);
}