8 lines
157 B
GLSL
8 lines
157 B
GLSL
#version 400
|
|
out vec4 sk_FragColor;
|
|
uniform float unknownInput;
|
|
void main() {
|
|
vec2 x = vec2(unknownInput);
|
|
sk_FragColor.x = atan(x.x, -1.0 * x.y);
|
|
}
|