• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#version 400
2out vec4 sk_FragColor;
3void main() {
4    vec2 x = vec2(sqrt(2.0));
5    sk_FragColor.x = atan(x.x, -1.0 * x.y);
6}
7