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