blob: df29704c6ffa3aed10933e3e8ec6411a0c99b6dc [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_2d50da() {
modf_result_vec2_f32 res = modf_result_vec2_f32{.fract=float2(-0.5f), .whole=float2(-1.0f)};
}
float4 vertex_main_inner() {
modf_2d50da();
return float4(0.0f);
}
fragment void fragment_main() {
modf_2d50da();
}
kernel void compute_main() {
modf_2d50da();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}