#version 400 core in vec2 fragmentTextureCoordinates; out vec4 fragmentColor; uniform sampler2D textureSampler; void main() { fragmentColor = texture(textureSampler, fragmentTextureCoordinates); }