blob: 762c0f7348d3656a7f71886532dcc1b30da197b9 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct modf_result_f32 {
float fract;
float whole;
};
modf_result_f32 tint_modf(float param_0) {
modf_result_f32 result;
result.fract = modf(param_0, result.whole);
return result;
}
kernel void tint_symbol() {
float const in = 1.25f;
modf_result_f32 const res = tint_modf(in);
float const fract = res.fract;
float const whole = res.whole;
return;
}