1cb93a386Sopenharmony_ci#version 400
2cb93a386Sopenharmony_ciout vec4 sk_FragColor;
3cb93a386Sopenharmony_ciuniform vec4 src;
4cb93a386Sopenharmony_ciuniform vec4 dst;
5cb93a386Sopenharmony_civec3 _blend_set_color_luminance_h3h3hh3(vec3 hueSatColor, float alpha, vec3 lumColor) {
6cb93a386Sopenharmony_ci    float lum = dot(vec3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), lumColor);
7cb93a386Sopenharmony_ci    vec3 result = (lum - dot(vec3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), hueSatColor)) + hueSatColor;
8cb93a386Sopenharmony_ci    float minComp = min(min(result.x, result.y), result.z);
9cb93a386Sopenharmony_ci    float maxComp = max(max(result.x, result.y), result.z);
10cb93a386Sopenharmony_ci    if (minComp < 0.0 && lum != minComp) {
11cb93a386Sopenharmony_ci        result = lum + (result - lum) * (lum / (lum - minComp));
12cb93a386Sopenharmony_ci    }
13cb93a386Sopenharmony_ci    if (maxComp > alpha && maxComp != lum) {
14cb93a386Sopenharmony_ci        return lum + ((result - lum) * (alpha - lum)) / (maxComp - lum);
15cb93a386Sopenharmony_ci    } else {
16cb93a386Sopenharmony_ci        return result;
17cb93a386Sopenharmony_ci    }
18cb93a386Sopenharmony_ci}
19cb93a386Sopenharmony_civec3 _blend_set_color_saturation_helper_h3h3h(vec3 minMidMax, float sat) {
20cb93a386Sopenharmony_ci    if (minMidMax.x < minMidMax.z) {
21cb93a386Sopenharmony_ci        return vec3(0.0, (sat * (minMidMax.y - minMidMax.x)) / (minMidMax.z - minMidMax.x), sat);
22cb93a386Sopenharmony_ci    } else {
23cb93a386Sopenharmony_ci        return vec3(0.0);
24cb93a386Sopenharmony_ci    }
25cb93a386Sopenharmony_ci}
26cb93a386Sopenharmony_civec3 _blend_set_color_saturation_h3h3h3(vec3 hueLumColor, vec3 satColor) {
27cb93a386Sopenharmony_ci    float sat = max(max(satColor.x, satColor.y), satColor.z) - min(min(satColor.x, satColor.y), satColor.z);
28cb93a386Sopenharmony_ci    if (hueLumColor.x <= hueLumColor.y) {
29cb93a386Sopenharmony_ci        if (hueLumColor.y <= hueLumColor.z) {
30cb93a386Sopenharmony_ci            return _blend_set_color_saturation_helper_h3h3h(hueLumColor, sat);
31cb93a386Sopenharmony_ci        } else if (hueLumColor.x <= hueLumColor.z) {
32cb93a386Sopenharmony_ci            return _blend_set_color_saturation_helper_h3h3h(hueLumColor.xzy, sat).xzy;
33cb93a386Sopenharmony_ci        } else {
34cb93a386Sopenharmony_ci            return _blend_set_color_saturation_helper_h3h3h(hueLumColor.zxy, sat).yzx;
35cb93a386Sopenharmony_ci        }
36cb93a386Sopenharmony_ci    } else if (hueLumColor.x <= hueLumColor.z) {
37cb93a386Sopenharmony_ci        return _blend_set_color_saturation_helper_h3h3h(hueLumColor.yxz, sat).yxz;
38cb93a386Sopenharmony_ci    } else if (hueLumColor.y <= hueLumColor.z) {
39cb93a386Sopenharmony_ci        return _blend_set_color_saturation_helper_h3h3h(hueLumColor.yzx, sat).zxy;
40cb93a386Sopenharmony_ci    } else {
41cb93a386Sopenharmony_ci        return _blend_set_color_saturation_helper_h3h3h(hueLumColor.zyx, sat).zyx;
42cb93a386Sopenharmony_ci    }
43cb93a386Sopenharmony_ci}
44cb93a386Sopenharmony_civoid main() {
45cb93a386Sopenharmony_ci    float _0_alpha = dst.w * src.w;
46cb93a386Sopenharmony_ci    vec3 _1_sda = src.xyz * dst.w;
47cb93a386Sopenharmony_ci    vec3 _2_dsa = dst.xyz * src.w;
48cb93a386Sopenharmony_ci    sk_FragColor = vec4((((_blend_set_color_luminance_h3h3hh3(_blend_set_color_saturation_h3h3h3(_2_dsa, _1_sda), _0_alpha, _2_dsa) + dst.xyz) - _2_dsa) + src.xyz) - _1_sda, (src.w + dst.w) - _0_alpha);
49cb93a386Sopenharmony_ci}
50