aboutsummaryrefslogtreecommitdiffstats
path: root/main.frag
blob: afb9829c87e538ec3d2d01056a337876a479c74a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 330 core

in vec2 tex_coords;

out vec4 color;

uniform sampler2D ourTexture1;

void main()
{
	color = texture(ourTexture1, tex_coords);
}