#version 450 core
out vec4 FragColor;

in vec2 Texture;

uniform sampler2D uSampler;

void main() {
    FragColor = texture(uSampler, Texture);
}