1 2 3 4 5 6 7 8
#version 330 core in vec2 texCoordOut; out vec4 color; uniform sampler2D image; void main() { color = texture(image, texCoordOut); }