2022-11-23 19:57:00 +00:00
|
|
|
struct modf_result_f32 {
|
2022-11-23 10:39:48 +00:00
|
|
|
float fract;
|
|
|
|
float whole;
|
|
|
|
};
|
2022-11-23 19:57:00 +00:00
|
|
|
modf_result_f32 tint_modf(float param_0) {
|
|
|
|
modf_result_f32 result;
|
2022-11-23 10:39:48 +00:00
|
|
|
result.fract = modf(param_0, result.whole);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void main() {
|
2022-11-23 15:00:20 +00:00
|
|
|
const float tint_symbol = 1.25f;
|
2022-11-23 19:57:00 +00:00
|
|
|
const modf_result_f32 res = tint_modf(tint_symbol);
|
2022-11-23 10:39:48 +00:00
|
|
|
const float fract = res.fract;
|
|
|
|
const float whole = res.whole;
|
|
|
|
return;
|
|
|
|
}
|