1 2 3 4 5 6 7 8 9 10 11
#version 150 in vec2 vUv; out vec4 vertexColor; uniform sampler2D map; void main() { vertexColor = texture2D (map, vUv); }