mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-26 10:03:48 +00:00
IES Loader
Updated IES loader to use torque math functions and calls in the problem areas for mac and linux. New F32_MIN_EX which is lower than F32_MIN (required for ies profiles)
This commit is contained in:
parent
39ec0305f9
commit
ad64b4f2df
5 changed files with 18 additions and 12 deletions
|
|
@ -100,6 +100,7 @@ static const S32 S32_MIN = S32(-2147483647 - 1); ///< Constant
|
|||
static const S32 S32_MAX = S32(2147483647); ///< Constant Max Limit S32
|
||||
static const U32 U32_MAX = U32(0xffffffff); ///< Constant Max Limit U32
|
||||
|
||||
static const F32 F32_MIN_EX = F32(-3.40282347e+38); ///< Constant Min Limit F32
|
||||
static const F32 F32_MIN = F32(1.175494351e-38F); ///< Constant Min Limit F32
|
||||
static const F32 F32_MAX = F32(3.402823466e+38F); ///< Constant Max Limit F32
|
||||
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@ static const S32 S32_MIN = S32(-2147483647 - 1);
|
|||
static const S32 S32_MAX = S32(2147483647);
|
||||
static const U32 U32_MAX = U32(0xffffffff);
|
||||
|
||||
static const F32 F32_MIN_EX = F32(-3.40282347e+38);
|
||||
static const F32 F32_MAX = F32(3.402823466e+38F);
|
||||
static const F32 F32_MIN = F32(1.175494351e-38F);
|
||||
|
||||
|
|
|
|||
|
|
@ -116,6 +116,7 @@ static const S32 S32_MIN = S32(-2147483647 - 1); ///< Constant
|
|||
static const S32 S32_MAX = S32(2147483647); ///< Constant Max Limit S32
|
||||
static const U32 U32_MAX = U32(0xffffffff); ///< Constant Max Limit U32
|
||||
|
||||
static const F32 F32_MIN_EX = F32(-3.40282347e+38); ///< Constant Min Limit F32
|
||||
static const F32 F32_MIN = F32(1.175494351e-38F); ///< Constant Min Limit F32
|
||||
static const F32 F32_MAX = F32(3.402823466e+38F); ///< Constant Max Limit F32
|
||||
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@ static const S32 S32_MIN = S32(-2147483647 - 1);
|
|||
static const S32 S32_MAX = S32(2147483647);
|
||||
static const U32 U32_MAX = U32(0xffffffff);
|
||||
|
||||
static const F32 F32_MIN_EX = F32(-3.40282347e+38);
|
||||
static const F32 F32_MAX = F32(3.402823466e+38F);
|
||||
static const F32 F32_MIN = F32(1.175494351e-38F);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue