blob: 7eecaa0f0c95041e125c95ec39332d474ec307e5 [file]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
struct modf_result_f16 {
half fract;
half whole;
};
void modf_8dbbbf() {
half arg_0 = -1.5h;
modf_result_f16 v = {};
v.fract = modf(arg_0, v.whole);
modf_result_f16 res = v;
}
fragment void fragment_main() {
modf_8dbbbf();
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
struct modf_result_f16 {
half fract;
half whole;
};
void modf_8dbbbf() {
half arg_0 = -1.5h;
modf_result_f16 v = {};
v.fract = modf(arg_0, v.whole);
modf_result_f16 res = v;
}
[[max_total_threads_per_threadgroup(1)]]
kernel void compute_main() {
modf_8dbbbf();
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
struct modf_result_f16 {
half fract;
half whole;
};
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void modf_8dbbbf() {
half arg_0 = -1.5h;
modf_result_f16 v = {};
v.fract = modf(arg_0, v.whole);
modf_result_f16 res = v;
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
modf_8dbbbf();
return out;
}
vertex vertex_main_outputs vertex_main() {
vertex_main_outputs tint_wrapper_result = {};
tint_wrapper_result.VertexOutput_pos = vertex_main_inner().pos;
return tint_wrapper_result;
}