blob: e4070ecfbc5216711c4cf83b49fff0eb4ccfa3e2 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void acosh_3433e8() {
float res = 1.0f;
}
fragment void fragment_main() {
acosh_3433e8();
}
kernel void compute_main() {
acosh_3433e8();
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
acosh_3433e8();
return out;
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.VertexOutput_pos=vertex_main_inner().pos};
}