blob: e8d3a98fcfb847d8e281ceaf981add23b7154a8f [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct modf_result_vec3_f16 {
half3 fract;
half3 whole;
};
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void modf_45005f() {
half3 arg_0 = half3(-1.5h);
modf_result_vec3_f16 v = {};
v.fract = modf(arg_0, v.whole);
modf_result_vec3_f16 res = v;
}
fragment void fragment_main() {
modf_45005f();
}
kernel void compute_main() {
modf_45005f();
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
modf_45005f();
return out;
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.VertexOutput_pos=vertex_main_inner().pos};
}