summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/uiShader.fs
blob: 907c4f18b121492c9bb790fc7d5bf16146305fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 130

in vec2 texCoord0;

uniform sampler2D sampler;

void
main()
{
	gl_FragColor = texture(sampler, texCoord0);
}