2020-12-09 22:14:47 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct Inputs {
|
|
|
|
float a;
|
|
|
|
float b;
|
|
|
|
};
|
|
|
|
struct Outputs {
|
|
|
|
float4 sk_FragColor [[color(0)]];
|
|
|
|
};
|
|
|
|
float _skOutParamHelper0_modf(float _var0, thread float& b) {
|
|
|
|
float _var1;
|
|
|
|
float _skResult = modf(_var0, _var1);
|
|
|
|
b = _var1;
|
|
|
|
return _skResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
2021-01-19 18:07:55 +00:00
|
|
|
Outputs _out;
|
2021-01-22 03:24:28 +00:00
|
|
|
(void)_out;
|
2021-01-19 18:07:55 +00:00
|
|
|
_out.sk_FragColor.x = _skOutParamHelper0_modf(_in.a, _in.b);
|
|
|
|
return _out;
|
2020-12-09 22:14:47 +00:00
|
|
|
}
|