c5b381c479
This guards against any potential for conflict with user code. Change-Id: Iecaf3ead5f8ada50b6dc159a4ad9e7f3e371edc7 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/499296 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
13 lines
546 B
GLSL
13 lines
546 B
GLSL
#version 400
|
|
out vec4 sk_FragColor;
|
|
uniform vec4 src;
|
|
uniform vec4 dst;
|
|
float blend_overlay_component_Qhh2h2(vec2 s, vec2 d) {
|
|
return 2.0 * d.x <= d.y ? (2.0 * s.x) * d.x : s.y * d.y - (2.0 * (d.y - d.x)) * (s.y - s.x);
|
|
}
|
|
void main() {
|
|
vec4 _0_result = vec4(blend_overlay_component_Qhh2h2(src.xw, dst.xw), blend_overlay_component_Qhh2h2(src.yw, dst.yw), blend_overlay_component_Qhh2h2(src.zw, dst.zw), src.w + (1.0 - src.w) * dst.w);
|
|
_0_result.xyz += dst.xyz * (1.0 - src.w) + src.xyz * (1.0 - dst.w);
|
|
sk_FragColor = _0_result;
|
|
}
|