blob: fb838cbf0da94df2b0d75396f79bf898cf0881e5 [file] [log] [blame]
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct Inputs {
float4 srcdst;
};
struct Outputs {
float4 sk_FragColor [[color(0)]];
};
float4 blend_xor(float4 src, float4 dst) {
return (1.0 - dst.w) * src + (1.0 - src.w) * dst;
}
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
Outputs _outputStruct;
thread Outputs* _out = &_outputStruct;
float4 _0_blend_xor;
{
_0_blend_xor = (1.0 - _in.dst.w) * _in.src + (1.0 - _in.src.w) * _in.dst;
}
_out->sk_FragColor = _0_blend_xor;
return *_out;
}