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