1#include <metal_stdlib> 2#include <simd/simd.h> 3#ifdef __clang__ 4#pragma clang diagnostic ignored "-Wall" 5#endif 6using namespace metal; 7struct Uniforms { 8 half4 colorGreen; 9 half4 colorRed; 10}; 11struct Inputs { 12}; 13struct Outputs { 14 half4 sk_FragColor [[color(0)]]; 15}; 16struct Globals { 17 half x; 18}; 19bool out_params_are_distinct_from_global_bh(thread Globals& _globals, thread half& y) { 20 y = 2.0h; 21 return _globals.x == 1.0h && y == 2.0h; 22} 23fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) { 24 Globals _globals{1.0h}; 25 (void)_globals; 26 Outputs _out; 27 (void)_out; 28 half _skTemp0; 29 bool _skTemp1; 30 _out.sk_FragColor = ((_skTemp1 = out_params_are_distinct_from_global_bh(_globals, _skTemp0)), (_globals.x = _skTemp0), _skTemp1) ? _uniforms.colorGreen : _uniforms.colorRed; 31 return _out; 32} 33