1/*#pragma settings CannotUseFractForNegativeValues*/ 2 3void main() { 4 float x = -42.0; 5 sk_FragColor.r = half(fract(x)); 6} 7