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