blob: 0840ed2bb6d6958bce8c7301b906227b6f18fbd2 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct frexp_result_vec3_f16 {
half3 fract;
int3 exp;
};
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void frexp_ae4a66() {
frexp_result_vec3_f16 res = frexp_result_vec3_f16{.fract=half3(0.5h), .exp=int3(1)};
}
float4 vertex_main_inner() {
frexp_ae4a66();
return float4(0.0f);
}
fragment void fragment_main() {
frexp_ae4a66();
}
kernel void compute_main() {
frexp_ae4a66();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}