1 2out vec4 sk_FragColor; 3uniform float unknownInput; 4void main() { 5 vec2 x = vec2(unknownInput); 6 sk_FragColor.x = atan(x.x, -x.y); 7} 8