1/*#pragma settings CannotUseMinAndAbsTogether*/ 2 3void main() { 4 half x = -5; 5 sk_FragColor.r = min(abs(x), 6); 6} 7