summaryrefslogtreecommitdiff
path: root/assets/fragment.glsl
blob: d6a6b52bafb01430e1ecfa7fe3a9b1402449b21a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 430 core

in vec2 texCoords;

out vec4 outColor;

uniform sampler2D texture0;

void main()
{
	outColor = texture(texture0, texCoords);
}