xref: /aosp_15_r20/external/skia/tests/sksl/workarounds/MinAndAbsTogetherStandaloneSettings.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1
2out vec4 sk_FragColor;
3void main() {
4    float x = -5.0;
5    sk_FragColor.x = min(abs(x), 6.0);
6}
7