| #include <metal_stdlib> |
| using namespace metal; |
| |
| struct VertexOutput { |
| float4 pos; |
| }; |
| |
| struct vertex_main_outputs { |
| float4 VertexOutput_pos [[position]]; |
| }; |
| |
| void ldexp_a6126e() { |
| int3 arg_1 = int3(1); |
| float3 res = ldexp(float3(1.0f), arg_1); |
| } |
| |
| fragment void fragment_main() { |
| ldexp_a6126e(); |
| } |
| |
| kernel void compute_main() { |
| ldexp_a6126e(); |
| } |
| |
| VertexOutput vertex_main_inner() { |
| VertexOutput out = {}; |
| out.pos = float4(0.0f); |
| ldexp_a6126e(); |
| return out; |
| } |
| |
| vertex vertex_main_outputs vertex_main() { |
| vertex_main_outputs tint_wrapper_result = {}; |
| tint_wrapper_result.VertexOutput_pos = vertex_main_inner().pos; |
| return tint_wrapper_result; |
| } |