1 2 3 4 5 6 7 8 9
#version 150 varying vec2 vUv; uniform sampler2DRect map; void main() { gl_FragColor = texture2DRect (map, vUv); }