7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
|
|
||
|
out vec4 sk_FragColor;
|
||
|
void main() {
|
||
|
vec2 x = vec2(sqrt(2.0));
|
||
|
sk_FragColor.x = atan(x.x, -x.y);
|
||
|
}
|