2020-09-25 17:35:58 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct Inputs {
|
2020-10-06 18:43:32 +00:00
|
|
|
float4 src;
|
|
|
|
float4 dst;
|
2020-09-25 17:35:58 +00:00
|
|
|
};
|
|
|
|
struct Outputs {
|
|
|
|
float4 sk_FragColor [[color(0)]];
|
|
|
|
};
|
2020-11-23 19:48:06 +00:00
|
|
|
float3 _blend_set_color_saturation_helper(float3 minMidMax, float sat) {
|
|
|
|
return minMidMax.x < minMidMax.z ? float3(0.0, (sat * (minMidMax.y - minMidMax.x)) / (minMidMax.z - minMidMax.x), sat) : float3(0.0);
|
|
|
|
}
|
2020-09-25 17:35:58 +00:00
|
|
|
|
2020-10-06 18:43:32 +00:00
|
|
|
|
2020-10-15 14:32:04 +00:00
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
|
|
Outputs _outputStruct;
|
|
|
|
thread Outputs* _out = &_outputStruct;
|
2020-12-16 18:25:14 +00:00
|
|
|
float _1_alpha = _in.dst.w * _in.src.w;
|
|
|
|
float3 _2_sda = _in.src.xyz * _in.dst.w;
|
|
|
|
float3 _3_dsa = _in.dst.xyz * _in.src.w;
|
2020-12-15 23:06:29 +00:00
|
|
|
float3 _4_blend_set_color_saturation;
|
2020-12-17 19:38:56 +00:00
|
|
|
float _5_sat = max(max(_2_sda.x, _2_sda.y), _2_sda.z) - min(min(_2_sda.x, _2_sda.y), _2_sda.z);
|
2020-12-15 20:21:03 +00:00
|
|
|
|
|
|
|
if (_3_dsa.x <= _3_dsa.y) {
|
|
|
|
if (_3_dsa.y <= _3_dsa.z) {
|
2020-12-17 19:38:56 +00:00
|
|
|
_4_blend_set_color_saturation = _blend_set_color_saturation_helper(_3_dsa, _5_sat);
|
2020-12-15 20:21:03 +00:00
|
|
|
} else if (_3_dsa.x <= _3_dsa.z) {
|
2020-12-17 19:38:56 +00:00
|
|
|
_4_blend_set_color_saturation = _blend_set_color_saturation_helper(_3_dsa.xzy, _5_sat).xzy;
|
2020-12-15 20:21:03 +00:00
|
|
|
} else {
|
2020-12-17 19:38:56 +00:00
|
|
|
_4_blend_set_color_saturation = _blend_set_color_saturation_helper(_3_dsa.zxy, _5_sat).yzx;
|
2020-10-15 14:32:04 +00:00
|
|
|
}
|
2020-12-15 20:21:03 +00:00
|
|
|
} else if (_3_dsa.x <= _3_dsa.z) {
|
2020-12-17 19:38:56 +00:00
|
|
|
_4_blend_set_color_saturation = _blend_set_color_saturation_helper(_3_dsa.yxz, _5_sat).yxz;
|
2020-12-15 20:21:03 +00:00
|
|
|
} else if (_3_dsa.y <= _3_dsa.z) {
|
2020-12-17 19:38:56 +00:00
|
|
|
_4_blend_set_color_saturation = _blend_set_color_saturation_helper(_3_dsa.yzx, _5_sat).zxy;
|
2020-12-15 20:21:03 +00:00
|
|
|
} else {
|
2020-12-17 19:38:56 +00:00
|
|
|
_4_blend_set_color_saturation = _blend_set_color_saturation_helper(_3_dsa.zyx, _5_sat).zyx;
|
2020-12-15 20:21:03 +00:00
|
|
|
}
|
2020-12-17 19:38:56 +00:00
|
|
|
float _7_lum = dot(float3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), _3_dsa);
|
2020-12-15 20:21:03 +00:00
|
|
|
|
2020-12-17 19:38:56 +00:00
|
|
|
float3 _8_result = (_7_lum - dot(float3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), _4_blend_set_color_saturation)) + _4_blend_set_color_saturation;
|
2020-12-16 18:24:48 +00:00
|
|
|
|
2020-12-17 19:38:56 +00:00
|
|
|
float _9_minComp = min(min(_8_result.x, _8_result.y), _8_result.z);
|
|
|
|
float _10_maxComp = max(max(_8_result.x, _8_result.y), _8_result.z);
|
|
|
|
if (_9_minComp < 0.0 && _7_lum != _9_minComp) {
|
|
|
|
_8_result = _7_lum + ((_8_result - _7_lum) * _7_lum) / (_7_lum - _9_minComp);
|
2020-09-25 17:35:58 +00:00
|
|
|
}
|
2020-12-17 19:38:56 +00:00
|
|
|
_out->sk_FragColor = float4(((((_10_maxComp > _1_alpha && _10_maxComp != _7_lum ? _7_lum + ((_8_result - _7_lum) * (_1_alpha - _7_lum)) / (_10_maxComp - _7_lum) : _8_result) + _in.dst.xyz) - _3_dsa) + _in.src.xyz) - _2_sda, (_in.src.w + _in.dst.w) - _1_alpha);
|
2020-12-15 20:21:03 +00:00
|
|
|
|
|
|
|
|
2020-09-28 17:13:40 +00:00
|
|
|
|
2020-09-25 17:35:58 +00:00
|
|
|
return *_out;
|
|
|
|
}
|