Add fast math optimization

This commit is contained in:
Jeff Hutchinson 2021-05-01 02:07:54 -04:00
parent 55b0ecb487
commit ab4c0f0361
3 changed files with 216 additions and 41 deletions

View file

@ -105,6 +105,7 @@ typedef unsigned _int64 U64;
#pragma warning(disable: 4291)
#define TORQUE_FORCEINLINE __forceinline
#define TORQUE_NOINLINE __declspec(noinline)
#if __cplusplus >= 201703L
#define TORQUE_CASE_FALLTHROUGH [[fallthrough]];