• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#include <metal_stdlib>
2#include <simd/simd.h>
3using namespace metal;
4struct Uniforms {
5    half4 src;
6    half4 dst;
7};
8struct Inputs {
9};
10struct Outputs {
11    half4 sk_FragColor [[color(0)]];
12};
13half _color_dodge_component_hh2h2(half2 s, half2 d) {
14    if (d.x == 0.0h) {
15        return s.x * (1.0h - d.y);
16    } else {
17        half delta = s.y - s.x;
18        if (delta == 0.0h) {
19            return (s.y * d.y + s.x * (1.0h - d.y)) + d.x * (1.0h - s.y);
20        } else {
21            delta = min(d.y, (d.x * s.y) / delta);
22            return (delta * s.y + s.x * (1.0h - d.y)) + d.x * (1.0h - s.y);
23        }
24    }
25}
26fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
27    Outputs _out;
28    (void)_out;
29    _out.sk_FragColor = half4(_color_dodge_component_hh2h2(_uniforms.src.xw, _uniforms.dst.xw), _color_dodge_component_hh2h2(_uniforms.src.yw, _uniforms.dst.yw), _color_dodge_component_hh2h2(_uniforms.src.zw, _uniforms.dst.zw), _uniforms.src.w + (1.0h - _uniforms.src.w) * _uniforms.dst.w);
30    return _out;
31}
32