summaryrefslogtreecommitdiff
path: root/stencil/shaders/stencil.fs
blob: ff7dd9b0baadd5e888c28f3da511d37224464a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 330 core

out vec4 frag_color;

in vec2 tex_coords;

uniform sampler2D our_texture;

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