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