lygia
/color
/layer
/exclusionSourceOver
)Exclusion Blending with Porter Duff Source Over Compositing
Dependencies:
Use:
<vec4> layerExclusionSourceOver(<vec4> src, <vec4> dst)
#ifndef FNC_LAYER_EXCLUSION_SRC_OVER
#define FNC_LAYER_EXCLUSION_SRC_OVER
vec4 layerExclusionSourceOver(vec4 src, vec4 dest) {
vec4 result = vec4(0.0, 0.0, 0.0, 0.0);
// Compute exclusion for RGB channels
vec3 blendedColor = blendExclusion(src.rgb, dest.rgb);
// Compute source-over for RGB channels
result.rgb = compositeSourceOver(blendedColor, dest.rgb, src.a, dest.a);
// Compute source-over for the alpha channel
result.a = compositeSourceOver(src.a, dest.a);
return result;
}
#endif
Dependencies:
Use:
<float4> layerExclusionSourceOver(<float4> src, <float4> dst)
#ifndef FNC_LAYER_EXCLUSION_SRC_OVER
#define FNC_LAYER_EXCLUSION_SRC_OVER
float4 layerExclusionSourceOver(float4 src, float4 dest) {
float4 result = float4(0.0, 0.0, 0.0, 0.0);
// Compute exclusion for RGB channels
float3 blendedColor = blendExclusion(src.rgb, dest.rgb);
// Compute source-over for RGB channels
result.rgb = compositeSourceOver(blendedColor, dest.rgb, src.a, dest.a);
// Compute source-over for the alpha channel
result.a = compositeSourceOver(src.a, dest.a);
return result;
}
#endif
Dependencies:
Use:
<float4> layerExclusionSourceOver(<float4> src, <float4> dst)
#ifndef FNC_LAYER_EXCLUSION_SRC_OVER
#define FNC_LAYER_EXCLUSION_SRC_OVER
float4 layerExclusionSourceOver(float4 src, float4 dest)
{
float4 result;
// Compute exclusion for RGB channels
float3 blendedColor = blendExclusion(src.rgb, dest.rgb);
// Compute source-over for RGB channels
result.rgb = compositeSourceOver(blendedColor, dest.rgb, src.a, dest.a);
// Compute source-over for the alpha channel
result.a = compositeSourceOver(src.a, dest.a);
return result;
}
#endif
LYGIA is dual-licensed under the Prosperity License and the Patron License for sponsors and contributors.
Sponsors and contributors are automatically added to the Patron License and they can ignore the any non-commercial rule of the Prosperity Licensed software (please take a look to the exception).
It's also possible to get a permanent comercial license hook to a single and specific version of LYGIA.
Sign up for the news letter bellow, joing the LYGIA's channel on Discord or follow the Github repository