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