2022-11-23 19:57:00 +00:00
|
|
|
struct frexp_result_f32 {
|
2022-11-23 18:21:38 +00:00
|
|
|
float fract;
|
|
|
|
int exp;
|
|
|
|
};
|
2022-11-23 19:57:00 +00:00
|
|
|
frexp_result_f32 tint_frexp(float param_0) {
|
2022-11-23 18:21:38 +00:00
|
|
|
float exp;
|
|
|
|
float fract = frexp(param_0, exp);
|
2022-11-23 19:57:00 +00:00
|
|
|
frexp_result_f32 result = {fract, int(exp)};
|
2022-11-23 18:21:38 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void main() {
|
|
|
|
const float tint_symbol = 1.25f;
|
2022-11-23 19:57:00 +00:00
|
|
|
const frexp_result_f32 res = tint_frexp(tint_symbol);
|
2022-11-23 18:21:38 +00:00
|
|
|
const float fract = res.fract;
|
|
|
|
const int exp = res.exp;
|
|
|
|
return;
|
|
|
|
}
|