1 uniform sampler2D PREFIX(tex);
3 vec4 FUNCNAME(vec2 tc) {
4 // OpenGL's origin is bottom-left, but most graphics software assumes
5 // a top-left origin. Thus, for inputs that come from the user,
6 // we flip the y coordinate.
9 return texture2D(PREFIX(tex), tc);