2020-09-16 21:46:37 +00:00
|
|
|
|
|
|
|
out vec4 sk_FragColor;
|
2021-05-24 14:52:23 +00:00
|
|
|
uniform float unknownInput;
|
2020-09-16 21:46:37 +00:00
|
|
|
void main() {
|
2021-05-24 14:52:23 +00:00
|
|
|
vec2 x = vec2(unknownInput);
|
2020-09-16 21:46:37 +00:00
|
|
|
sk_FragColor.x = atan(x.x, -x.y);
|
|
|
|
}
|