| #include <metal_stdlib> |
| using namespace metal; |
| |
| struct VertexOutput { |
| float4 pos; |
| }; |
| |
| struct vertex_main_outputs { |
| float4 VertexOutput_pos [[position]]; |
| }; |
| |
| void tan_ae26ae() { |
| float3 res = float3(1.55740773677825927734f); |
| } |
| |
| fragment void fragment_main() { |
| tan_ae26ae(); |
| } |
| |
| kernel void compute_main() { |
| tan_ae26ae(); |
| } |
| |
| VertexOutput vertex_main_inner() { |
| VertexOutput out = {}; |
| out.pos = float4(0.0f); |
| tan_ae26ae(); |
| return out; |
| } |
| |
| vertex vertex_main_outputs vertex_main() { |
| return vertex_main_outputs{.VertexOutput_pos=vertex_main_inner().pos}; |
| } |