#version 450
// Input
in vec2 UV;
// Output
out vec4 color;
void main()
{
color = texture(textureSampler, UV).rgb;
}