1#version 110 2uniform sampler2D s; 3void main() { 4 vec4 a = texture2D(s, vec2(0.0)); 5 vec4 b = texture2DProj(s, vec3(0.0)); 6 gl_FragColor = vec4(a.xy, b.xy); 7} 8