#version 330 core out vec4 frag_color; uniform sampler2D texture; in vec2 uv; void main() { frag_color = texture(texture, uv); };