1/*#pragma settings MustForceNegatedAtanParamToFloat*/ 2 3void main() { 4 float2 x = float2(sqrt(2)); 5 sk_FragColor.r = half(atan(x.x, -x.y)); 6} 7