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