e1068349fc
Change-Id: Ib9a1a51f8a29b2d03792a3abd93b3a9a321b5464 Bug: skia:10851 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/387756 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
25 lines
1.0 KiB
Metal
25 lines
1.0 KiB
Metal
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
using namespace metal;
|
|
struct Uniforms {
|
|
float4 src;
|
|
float4 dst;
|
|
};
|
|
struct Inputs {
|
|
};
|
|
struct Outputs {
|
|
float4 sk_FragColor [[color(0)]];
|
|
};
|
|
float _blend_overlay_component_hh2h2(float2 s, float2 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);
|
|
}
|
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
Outputs _out;
|
|
(void)_out;
|
|
float4 _0_result = float4(_blend_overlay_component_hh2h2(_uniforms.src.xw, _uniforms.dst.xw), _blend_overlay_component_hh2h2(_uniforms.src.yw, _uniforms.dst.yw), _blend_overlay_component_hh2h2(_uniforms.src.zw, _uniforms.dst.zw), _uniforms.src.w + (1.0 - _uniforms.src.w) * _uniforms.dst.w);
|
|
_0_result.xyz = _0_result.xyz + _uniforms.dst.xyz * (1.0 - _uniforms.src.w) + _uniforms.src.xyz * (1.0 - _uniforms.dst.w);
|
|
_out.sk_FragColor = _0_result;
|
|
return _out;
|
|
}
|