2020-12-09 21:19:37 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct Inputs {
|
|
|
|
float a;
|
2020-12-30 19:53:17 +00:00
|
|
|
float4 b;
|
2020-12-09 21:19:37 +00:00
|
|
|
};
|
|
|
|
struct Outputs {
|
|
|
|
float4 sk_FragColor [[color(0)]];
|
|
|
|
};
|
|
|
|
|
2020-12-30 19:53:17 +00:00
|
|
|
|
2020-12-09 21:19:37 +00:00
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
|
|
|
Outputs _outputStruct;
|
|
|
|
thread Outputs* _out = &_outputStruct;
|
|
|
|
_out->sk_FragColor.x = sign(_in.a);
|
2020-12-30 19:53:17 +00:00
|
|
|
_out->sk_FragColor = normalize(_in.b);
|
2020-12-09 21:19:37 +00:00
|
|
|
return *_out;
|
|
|
|
}
|