mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-23 06:15:37 +00:00
14 lines
339 B
C
14 lines
339 B
C
|
#ifndef _R3DFLOAT_H_
|
||
|
#define _R3DFLOAT_H_
|
||
|
|
||
|
namespace R3DFloat
|
||
|
{
|
||
|
float GetFloat16(UINT16 f);
|
||
|
float GetFloat32(UINT32 f);
|
||
|
|
||
|
UINT32 ConvertProFloat(UINT32 a1); // return float in hex or integer format
|
||
|
UINT32 Convert16BitProFloat(UINT32 a1);
|
||
|
float ToFloat(UINT32 a1); // integer float to actual IEEE 754 float
|
||
|
}
|
||
|
|
||
|
#endif
|