mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-20 12:50:57 +00:00
Update mMath_CPU.cpp
This commit is contained in:
parent
ea6c9cf5e8
commit
babde0e6d2
1 changed files with 2 additions and 1 deletions
|
|
@ -7,13 +7,14 @@
|
|||
|
||||
#if defined(__x86_64__) || defined(_M_X64) || defined(__i386) || defined(_M_IX86)
|
||||
#define TORQUE_MATH_x64 1
|
||||
#include <intrin.h> // this header will sort out which intrinsics are supported.
|
||||
#elif defined(__aarch64__) || defined(_M_ARM64)
|
||||
#define TORQUE_MATH_ARM 1
|
||||
#include <arm_neon.h>
|
||||
#else
|
||||
#define TORQUE_MATH_C 1
|
||||
#endif
|
||||
|
||||
#include <intrin.h> // this header will sort out which intrinsics are supported.
|
||||
#include <algorithm> // for std::min
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue