blob: 9364ad5325d40261f81b0d91e8d984fc1e8fbfd4 [file] [log] [blame]
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;
}
static const modf_result_f32 c = {0.25f, 1.0f};
[numthreads(1, 1, 1)]
void main() {
float runtime_in = 1.25f;
modf_result_f32 res = {0.25f, 1.0f};
res = tint_modf(runtime_in);
res = c;
float fract = res.fract;
float whole = res.whole;
return;
}