blob: bf6884e6c05627a812cb82d529c4a2d8385aa35a [file] [log] [blame] [edit]
#version 150
varying vec2 vUv;
uniform sampler2DRect map;
void main() {
gl_FragColor = texture2DRect (map, vUv);
}