summaryrefslogtreecommitdiff
path: root/advanced_opengl/5.framebuffers/shaders/cube.frag
blob: 71892a74b5ad2be5ceae88839edba1dfc5c732b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 330 core

out vec4 frag_color;

in vec2 tex_coords;

uniform sampler2D texture1;

void main(void)
{
    frag_color = texture(texture1, tex_coords);
}