2021-03-16 14:40:11 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
2021-03-15 18:58:57 +00:00
|
|
|
struct Uniforms {
|
2021-10-30 02:34:51 +00:00
|
|
|
half4 src;
|
|
|
|
half4 dst;
|
2020-09-25 17:35:58 +00:00
|
|
|
};
|
2021-03-15 18:58:57 +00:00
|
|
|
struct Inputs {
|
|
|
|
};
|
2020-09-25 17:35:58 +00:00
|
|
|
struct Outputs {
|
2021-10-30 02:34:51 +00:00
|
|
|
half4 sk_FragColor [[color(0)]];
|
2020-09-25 17:35:58 +00:00
|
|
|
};
|
2022-04-07 20:59:26 +00:00
|
|
|
half blend_color_saturation_Qhh3(half3 color) {
|
|
|
|
return max(max(color.x, color.y), color.z) - min(min(color.x, color.y), color.z);
|
|
|
|
}
|
2022-04-22 16:39:15 +00:00
|
|
|
half4 blend_hslc_h4h4h4h2(half4 src, half4 dst, half2 flipSat) {
|
2022-04-04 23:52:55 +00:00
|
|
|
half alpha = dst.w * src.w;
|
|
|
|
half3 sda = src.xyz * dst.w;
|
|
|
|
half3 dsa = dst.xyz * src.w;
|
2022-04-22 16:39:15 +00:00
|
|
|
half3 l = bool(flipSat.x) ? dsa : sda;
|
|
|
|
half3 r = bool(flipSat.x) ? sda : dsa;
|
|
|
|
if (bool(flipSat.y)) {
|
2022-04-07 20:59:26 +00:00
|
|
|
half _2_mn = min(min(l.x, l.y), l.z);
|
|
|
|
half _3_mx = max(max(l.x, l.y), l.z);
|
|
|
|
l = _3_mx > _2_mn ? ((l - _2_mn) * blend_color_saturation_Qhh3(r)) / (_3_mx - _2_mn) : half3(0.0h);
|
2022-04-04 23:52:55 +00:00
|
|
|
r = dsa;
|
|
|
|
}
|
2022-04-07 20:59:26 +00:00
|
|
|
half _4_lum = dot(half3(0.30000001192092896h, 0.5899999737739563h, 0.10999999940395355h), r);
|
|
|
|
half3 _5_result = (_4_lum - dot(half3(0.30000001192092896h, 0.5899999737739563h, 0.10999999940395355h), l)) + l;
|
|
|
|
half _6_minComp = min(min(_5_result.x, _5_result.y), _5_result.z);
|
|
|
|
half _7_maxComp = max(max(_5_result.x, _5_result.y), _5_result.z);
|
|
|
|
if (_6_minComp < 0.0h && _4_lum != _6_minComp) {
|
|
|
|
_5_result = _4_lum + (_5_result - _4_lum) * (_4_lum / (_4_lum - _6_minComp));
|
2022-04-04 23:52:55 +00:00
|
|
|
}
|
2022-04-07 20:59:26 +00:00
|
|
|
if (_7_maxComp > alpha && _7_maxComp != _4_lum) {
|
|
|
|
_5_result = _4_lum + ((_5_result - _4_lum) * (alpha - _4_lum)) / (_7_maxComp - _4_lum);
|
2021-03-19 13:46:00 +00:00
|
|
|
}
|
2022-04-07 20:59:26 +00:00
|
|
|
return half4((((_5_result + dst.xyz) - dsa) + src.xyz) - sda, (src.w + dst.w) - alpha);
|
2021-03-19 13:46:00 +00:00
|
|
|
}
|
2021-03-15 18:58:57 +00:00
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
2021-03-15 18:30:06 +00:00
|
|
|
Outputs _out;
|
|
|
|
(void)_out;
|
2022-04-22 16:39:15 +00:00
|
|
|
_out.sk_FragColor = blend_hslc_h4h4h4h2(_uniforms.src, _uniforms.dst, half2(1.0h));
|
2021-01-19 18:07:55 +00:00
|
|
|
return _out;
|
2020-09-25 17:35:58 +00:00
|
|
|
}
|