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-10-06 18:43:32 +00:00
|
|
|
|
2020-10-12 15:21:35 +00:00
|
|
|
float _blend_color_luminance(float3 color) {
|
|
|
|
return dot(float3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), color);
|
|
|
|
}
|
|
|
|
float3 _blend_set_color_luminance(float3 hueSatColor, float alpha, float3 lumColor) {
|
2020-10-13 15:19:41 +00:00
|
|
|
float _4_blend_color_luminance;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_4_blend_color_luminance = dot(float3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), lumColor);
|
2020-10-12 15:21:35 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
float lum = _4_blend_color_luminance;
|
2020-10-12 15:21:35 +00:00
|
|
|
|
2020-10-13 15:19:41 +00:00
|
|
|
float _5_blend_color_luminance;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_5_blend_color_luminance = dot(float3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), hueSatColor);
|
2020-10-12 15:21:35 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
float3 result = (lum - _5_blend_color_luminance) + hueSatColor;
|
2020-10-12 15:21:35 +00:00
|
|
|
|
|
|
|
float minComp = min(min(result.x, result.y), result.z);
|
|
|
|
float maxComp = max(max(result.x, result.y), result.z);
|
|
|
|
if (minComp < 0.0 && lum != minComp) {
|
|
|
|
result = lum + ((result - lum) * lum) / (lum - minComp);
|
|
|
|
}
|
|
|
|
return maxComp > alpha && maxComp != lum ? lum + ((result - lum) * (alpha - lum)) / (maxComp - lum) : result;
|
|
|
|
}
|
|
|
|
float4 blend_luminosity(float4 src, float4 dst) {
|
|
|
|
float alpha = dst.w * src.w;
|
|
|
|
float3 sda = src.xyz * dst.w;
|
|
|
|
float3 dsa = dst.xyz * src.w;
|
|
|
|
return float4((((_blend_set_color_luminance(dsa, alpha, sda) + dst.xyz) - dsa) + src.xyz) - sda, (src.w + dst.w) - alpha);
|
|
|
|
}
|
2020-09-25 17:35:58 +00:00
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
|
|
Outputs _outputStruct;
|
|
|
|
thread Outputs* _out = &_outputStruct;
|
2020-10-13 15:19:41 +00:00
|
|
|
float4 _0_blend_luminosity;
|
2020-09-25 17:35:58 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +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;
|
|
|
|
_0_blend_luminosity = float4((((_blend_set_color_luminance(_3_dsa, _1_alpha, _2_sda) + _in.dst.xyz) - _3_dsa) + _in.src.xyz) - _2_sda, (_in.src.w + _in.dst.w) - _1_alpha);
|
2020-09-25 17:35:58 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
|
|
|
|
_out->sk_FragColor = _0_blend_luminosity;
|
2020-09-25 17:35:58 +00:00
|
|
|
|
|
|
|
return *_out;
|
|
|
|
}
|