1 2 3 4 5 6 7 8 9 10 11
#version 330 core in vec2 texCoord0; uniform sampler2D sampler; void main() { gl_FragColor = texture(sampler, texCoord0); }