| #include <metal_stdlib> |
| |
| using namespace metal; |
| half clamp_553ffb() { |
| half arg_0 = 1.0h; |
| half arg_1 = 1.0h; |
| half arg_2 = 1.0h; |
| half res = clamp(arg_0, arg_1, arg_2); |
| return res; |
| } |
| |
| fragment void fragment_main(device half* tint_symbol_1 [[buffer(0)]]) { |
| *(tint_symbol_1) = clamp_553ffb(); |
| return; |
| } |
| |
| kernel void compute_main(device half* tint_symbol_2 [[buffer(0)]]) { |
| *(tint_symbol_2) = clamp_553ffb(); |
| return; |
| } |
| |
| struct VertexOutput { |
| float4 pos; |
| half prevent_dce; |
| }; |
| |
| struct tint_symbol { |
| half prevent_dce [[user(locn0)]] [[flat]]; |
| float4 pos [[position]]; |
| }; |
| |
| VertexOutput vertex_main_inner() { |
| VertexOutput out = {}; |
| out.pos = float4(0.0f); |
| out.prevent_dce = clamp_553ffb(); |
| return out; |
| } |
| |
| vertex tint_symbol vertex_main() { |
| VertexOutput const inner_result = vertex_main_inner(); |
| tint_symbol wrapper_result = {}; |
| wrapper_result.pos = inner_result.pos; |
| wrapper_result.prevent_dce = inner_result.prevent_dce; |
| return wrapper_result; |
| } |
| |