| #include <metal_stdlib> |
| |
| using namespace metal; |
| |
| struct modf_result_f16 { |
| half fract; |
| half whole; |
| }; |
| modf_result_f16 tint_modf(half param_0) { |
| modf_result_f16 result; |
| result.fract = modf(param_0, result.whole); |
| return result; |
| } |
| |
| void modf_8dbbbf() { |
| half arg_0 = -1.5h; |
| modf_result_f16 res = tint_modf(arg_0); |
| } |
| |
| fragment void fragment_main() { |
| modf_8dbbbf(); |
| return; |
| } |
| |
| kernel void compute_main() { |
| modf_8dbbbf(); |
| return; |
| } |
| |
| struct VertexOutput { |
| float4 pos; |
| }; |
| |
| struct tint_symbol { |
| float4 pos [[position]]; |
| }; |
| |
| VertexOutput vertex_main_inner() { |
| VertexOutput out = {}; |
| out.pos = float4(0.0f); |
| modf_8dbbbf(); |
| return out; |
| } |
| |
| vertex tint_symbol vertex_main() { |
| VertexOutput const inner_result = vertex_main_inner(); |
| tint_symbol wrapper_result = {}; |
| wrapper_result.pos = inner_result.pos; |
| return wrapper_result; |
| } |
| |