mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Added x64 check for SSE Intrinsic functions
This commit is contained in:
parent
bcb56a027d
commit
00cf5ab577
5 changed files with 5 additions and 5 deletions
|
|
@ -65,7 +65,7 @@ MODULE_BEGIN( TSMeshIntrinsics )
|
|||
// Find the best implementation for the current CPU
|
||||
if(Platform::SystemInfo.processor.properties & CPU_PROP_SSE)
|
||||
{
|
||||
#if defined(TORQUE_CPU_X86)
|
||||
#if (defined( TORQUE_CPU_X86 ) || defined( TORQUE_CPU_X64 ))
|
||||
|
||||
zero_vert_normal_bulk = zero_vert_normal_bulk_SSE;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue