2020-09-25 17:35:58 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct Inputs {
|
2020-10-06 18:43:32 +00:00
|
|
|
float4 src;
|
|
|
|
float4 dst;
|
2020-09-25 17:35:58 +00:00
|
|
|
};
|
|
|
|
struct Outputs {
|
|
|
|
float4 sk_FragColor [[color(0)]];
|
|
|
|
};
|
|
|
|
|
2020-10-06 18:43:32 +00:00
|
|
|
|
2020-09-25 17:35:58 +00:00
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
|
|
Outputs _outputStruct;
|
|
|
|
thread Outputs* _out = &_outputStruct;
|
2020-12-16 18:24:48 +00:00
|
|
|
float4 _0_blend_modulate;
|
|
|
|
_0_blend_modulate = _in.src * _in.dst;
|
|
|
|
_out->sk_FragColor = _0_blend_modulate;
|
2020-09-25 17:35:58 +00:00
|
|
|
|
|
|
|
return *_out;
|
|
|
|
}
|