2020-09-21 21:01:22 +00:00
|
|
|
|
2020-09-25 17:35:58 +00:00
|
|
|
out vec4 sk_FragColor;
|
2020-10-06 18:43:32 +00:00
|
|
|
in vec4 src;
|
|
|
|
in vec4 dst;
|
2020-10-12 15:21:35 +00:00
|
|
|
float _blend_color_luminance(vec3 color) {
|
|
|
|
return dot(vec3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), color);
|
|
|
|
}
|
|
|
|
vec3 _blend_set_color_luminance(vec3 hueSatColor, float alpha, vec3 lumColor) {
|
2020-10-13 15:19:41 +00:00
|
|
|
float _4_blend_color_luminance;
|
2020-09-21 21:01:22 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_4_blend_color_luminance = dot(vec3(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-09-21 21:19:56 +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(vec3(0.30000001192092896, 0.5899999737739563, 0.10999999940395355), hueSatColor);
|
2020-10-12 15:21:35 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
vec3 result = (lum - _5_blend_color_luminance) + hueSatColor;
|
2020-09-28 17:13:40 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
float _blend_color_saturation(vec3 color) {
|
|
|
|
return max(max(color.x, color.y), color.z) - min(min(color.x, color.y), color.z);
|
|
|
|
}
|
|
|
|
vec3 _blend_set_color_saturation_helper(vec3 minMidMax, float sat) {
|
|
|
|
return minMidMax.x < minMidMax.z ? vec3(0.0, (sat * (minMidMax.y - minMidMax.x)) / (minMidMax.z - minMidMax.x), sat) : vec3(0.0);
|
|
|
|
}
|
|
|
|
vec3 _blend_set_color_saturation(vec3 hueLumColor, vec3 satColor) {
|
2020-10-13 15:19:41 +00:00
|
|
|
float _6_blend_color_saturation;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_6_blend_color_saturation = max(max(satColor.x, satColor.y), satColor.z) - min(min(satColor.x, satColor.y), satColor.z);
|
2020-10-12 15:21:35 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
float sat = _6_blend_color_saturation;
|
2020-09-28 17:13:40 +00:00
|
|
|
|
2020-10-12 15:21:35 +00:00
|
|
|
if (hueLumColor.x <= hueLumColor.y) {
|
|
|
|
if (hueLumColor.y <= hueLumColor.z) {
|
2020-10-13 15:19:41 +00:00
|
|
|
vec3 _7_blend_set_color_saturation_helper;
|
2020-09-21 21:19:56 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_7_blend_set_color_saturation_helper = hueLumColor.x < hueLumColor.z ? vec3(0.0, (sat * (hueLumColor.y - hueLumColor.x)) / (hueLumColor.z - hueLumColor.x), sat) : vec3(0.0);
|
2020-09-21 21:19:56 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
hueLumColor.xyz = _7_blend_set_color_saturation_helper;
|
2020-09-21 21:19:56 +00:00
|
|
|
|
2020-10-12 15:21:35 +00:00
|
|
|
} else if (hueLumColor.x <= hueLumColor.z) {
|
2020-10-13 15:19:41 +00:00
|
|
|
vec3 _8_blend_set_color_saturation_helper;
|
2020-09-21 21:19:56 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_8_blend_set_color_saturation_helper = hueLumColor.x < hueLumColor.y ? vec3(0.0, (sat * (hueLumColor.z - hueLumColor.x)) / (hueLumColor.y - hueLumColor.x), sat) : vec3(0.0);
|
2020-09-21 21:19:56 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
hueLumColor.xzy = _8_blend_set_color_saturation_helper;
|
2020-09-21 21:19:56 +00:00
|
|
|
|
2020-10-12 15:21:35 +00:00
|
|
|
} else {
|
2020-10-13 15:19:41 +00:00
|
|
|
vec3 _9_blend_set_color_saturation_helper;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_9_blend_set_color_saturation_helper = hueLumColor.z < hueLumColor.y ? vec3(0.0, (sat * (hueLumColor.x - hueLumColor.z)) / (hueLumColor.y - hueLumColor.z), sat) : vec3(0.0);
|
2020-09-28 17:13:40 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
hueLumColor.zxy = _9_blend_set_color_saturation_helper;
|
2020-10-12 15:21:35 +00:00
|
|
|
|
2020-09-21 21:19:56 +00:00
|
|
|
}
|
2020-10-12 15:21:35 +00:00
|
|
|
} else if (hueLumColor.x <= hueLumColor.z) {
|
2020-10-13 15:19:41 +00:00
|
|
|
vec3 _10_blend_set_color_saturation_helper;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_10_blend_set_color_saturation_helper = hueLumColor.y < hueLumColor.z ? vec3(0.0, (sat * (hueLumColor.x - hueLumColor.y)) / (hueLumColor.z - hueLumColor.y), sat) : vec3(0.0);
|
2020-10-12 15:21:35 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
hueLumColor.yxz = _10_blend_set_color_saturation_helper;
|
2020-09-21 21:19:56 +00:00
|
|
|
|
2020-10-12 15:21:35 +00:00
|
|
|
} else if (hueLumColor.y <= hueLumColor.z) {
|
2020-10-13 15:19:41 +00:00
|
|
|
vec3 _11_blend_set_color_saturation_helper;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_11_blend_set_color_saturation_helper = hueLumColor.y < hueLumColor.x ? vec3(0.0, (sat * (hueLumColor.z - hueLumColor.y)) / (hueLumColor.x - hueLumColor.y), sat) : vec3(0.0);
|
2020-10-12 15:21:35 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
hueLumColor.yzx = _11_blend_set_color_saturation_helper;
|
2020-09-21 21:19:56 +00:00
|
|
|
|
2020-10-12 15:21:35 +00:00
|
|
|
} else {
|
2020-10-13 15:19:41 +00:00
|
|
|
vec3 _12_blend_set_color_saturation_helper;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
_12_blend_set_color_saturation_helper = hueLumColor.z < hueLumColor.x ? vec3(0.0, (sat * (hueLumColor.y - hueLumColor.z)) / (hueLumColor.x - hueLumColor.z), sat) : vec3(0.0);
|
2020-10-12 15:21:35 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
hueLumColor.zyx = _12_blend_set_color_saturation_helper;
|
2020-10-12 15:21:35 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
return hueLumColor;
|
|
|
|
}
|
|
|
|
vec4 blend_saturation(vec4 src, vec4 dst) {
|
|
|
|
float alpha = dst.w * src.w;
|
|
|
|
vec3 sda = src.xyz * dst.w;
|
|
|
|
vec3 dsa = dst.xyz * src.w;
|
|
|
|
return vec4((((_blend_set_color_luminance(_blend_set_color_saturation(dsa, sda), alpha, dsa) + dst.xyz) - dsa) + src.xyz) - sda, (src.w + dst.w) - alpha);
|
|
|
|
}
|
|
|
|
void main() {
|
2020-10-13 15:19:41 +00:00
|
|
|
vec4 _0_blend_saturation;
|
2020-10-12 15:21:35 +00:00
|
|
|
{
|
2020-10-13 15:19:41 +00:00
|
|
|
float _1_alpha = dst.w * src.w;
|
|
|
|
vec3 _2_sda = src.xyz * dst.w;
|
|
|
|
vec3 _3_dsa = dst.xyz * src.w;
|
|
|
|
_0_blend_saturation = vec4((((_blend_set_color_luminance(_blend_set_color_saturation(_3_dsa, _2_sda), _1_alpha, _3_dsa) + dst.xyz) - _3_dsa) + src.xyz) - _2_sda, (src.w + dst.w) - _1_alpha);
|
2020-09-21 21:01:22 +00:00
|
|
|
}
|
2020-10-13 15:19:41 +00:00
|
|
|
|
|
|
|
sk_FragColor = _0_blend_saturation;
|
2020-09-28 17:13:40 +00:00
|
|
|
|
2020-09-21 21:01:22 +00:00
|
|
|
}
|