1
2out vec4 sk_FragColor;
3void main() {
4    float x = -42.0;
5    sk_FragColor.x = fract(x);
6}
7