| #include <metal_stdlib> |
| using namespace metal; |
| struct frexp_result_vec4_f32 { |
| float4 fract; |
| int4 exp; |
| }; |
| struct vertex_main_outputs { |
| float4 tint_symbol [[position]]; |
| }; |
| |
| void frexp_77af93() { |
| frexp_result_vec4_f32 res = frexp_result_vec4_f32{.fract=float4(0.5f), .exp=int4(1)}; |
| } |
| float4 vertex_main_inner() { |
| frexp_77af93(); |
| return float4(0.0f); |
| } |
| fragment void fragment_main() { |
| frexp_77af93(); |
| } |
| kernel void compute_main() { |
| frexp_77af93(); |
| } |
| vertex vertex_main_outputs vertex_main() { |
| return vertex_main_outputs{.tint_symbol=vertex_main_inner()}; |
| } |