Files
UnrealEngine/Engine/Source/ThirdParty/Imath/Imath-3.1.12/website/examples/half.c
2025-05-18 13:04:45 +08:00

13 lines
150 B
C

#include <Imath/half.h>
void
half_example()
{
float f = 3.5f;
half h = imath_float_to_half (f)
float hh = imath_half_to_float (h)
}