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