summaryrefslogtreecommitdiff
path: root/engine/fragment-texture.glsl
blob: a4d378bd61a27db42a760044b32492e39e9af3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core
out vec4 FragColor;

in vec2 in_texture_coords;

uniform sampler2D input_texture;

void main()
{
	FragColor = texture(input_texture, in_texture_coords);
}