blob: 92a13b4d421a86e6d34fc043a02ccafc41c85e99 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct modf_result_vec2_f16 {
half2 fract;
half2 whole;
};
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void modf_a545b9() {
modf_result_vec2_f16 res = modf_result_vec2_f16{.fract=half2(-0.5h), .whole=half2(-1.0h)};
}
float4 vertex_main_inner() {
modf_a545b9();
return float4(0.0f);
}
fragment void fragment_main() {
modf_a545b9();
}
kernel void compute_main() {
modf_a545b9();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}