2020-09-26 04:18:55 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
2021-02-04 19:50:03 +00:00
|
|
|
struct Uniforms {
|
|
|
|
float4 colorGreen;
|
|
|
|
float4 colorRed;
|
|
|
|
};
|
2020-09-26 04:18:55 +00:00
|
|
|
struct Inputs {
|
|
|
|
};
|
|
|
|
struct Outputs {
|
|
|
|
float4 sk_FragColor [[color(0)]];
|
|
|
|
};
|
2021-02-11 22:50:09 +00:00
|
|
|
float2 tricky(float x, float y, thread float2& color, float z);
|
|
|
|
float2 _skOutParamHelper0_tricky(float _var0, float _var1, thread float4& color, float _var3) {
|
|
|
|
float2 _var2 = color.xz;
|
|
|
|
float2 _skResult = tricky(_var0, _var1, _var2, _var3);
|
|
|
|
color.xz = _var2;
|
|
|
|
return _skResult;
|
|
|
|
}
|
|
|
|
void func(thread float4& color);
|
|
|
|
void _skOutParamHelper1_func(thread float4& result) {
|
|
|
|
float4 _var0 = result;
|
|
|
|
func(_var0);
|
|
|
|
result = _var0;
|
|
|
|
}
|
2021-02-04 19:50:03 +00:00
|
|
|
|
|
|
|
|
2021-02-11 22:50:09 +00:00
|
|
|
float2 tricky(float x, float y, thread float2& color, float z) {
|
|
|
|
color.xy = color.yx;
|
|
|
|
return float2(x + y, z);
|
|
|
|
}
|
|
|
|
void func(thread float4& color) {
|
|
|
|
float2 t = _skOutParamHelper0_tricky(1.0, 2.0, color, 5.0);
|
|
|
|
color.yw = t;
|
|
|
|
}
|
2021-02-04 19:50:03 +00:00
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], 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-02-04 19:50:03 +00:00
|
|
|
float4 result = float4(0.0, 1.0, 2.0, 3.0);
|
2021-02-11 22:50:09 +00:00
|
|
|
_skOutParamHelper1_func(result);
|
2021-02-04 19:50:03 +00:00
|
|
|
_out.sk_FragColor = all(result == float4(2.0, 3.0, 0.0, 5.0)) ? _uniforms.colorGreen : _uniforms.colorRed;
|
2021-01-19 18:07:55 +00:00
|
|
|
return _out;
|
2020-09-26 04:18:55 +00:00
|
|
|
}
|