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

in vec2 tex_coords;

out vec4 frag_color;

uniform sampler2D texture1;

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