7extern "C" uint16_t rr_f16_from_f32(
float value);
19 result.f16 = rr_f16_from_f32(value);
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
IEEE 754 16-bit half-precision floating point number.
Definition half.hpp:11
static half from_float(float value)
Converts a 32-bit float to a 16-bit half, rounding to nearest, ties to even.
Definition half.hpp:17