#version 130

in vec2 texCoord;
out vec4 fragColor;
uniform sampler2D tex;

void main()
{
	fragColor = texture(tex, texCoord);
}