Calculates WGSL frexp
Splits val into a fraction and an exponent so that val = fraction * 2 ^ exponent. The fraction is 0.0 or its magnitude is in the range [0.5, 1.0).
the float to split
the float type, f32 or f16 or f64
the results of splitting val
Generated using TypeDoc
Calculates WGSL frexp
Splits val into a fraction and an exponent so that val = fraction * 2 ^ exponent. The fraction is 0.0 or its magnitude is in the range [0.5, 1.0).