mac isa neon update

added float3
restructured the classes to look more like the final version of the x86 classes
This commit is contained in:
marauder2k7 2026-02-27 14:07:26 +00:00
parent 657a606c57
commit d8b511bbf9
4 changed files with 169 additions and 33 deletions

View file

@ -25,6 +25,7 @@
#import "math/mMath.h"
#import "core/strings/stringFunctions.h"
#include "console/engineAPI.h"
#include "math/public/math_backend.h"
extern void mInstallLibrary_C();
@ -107,7 +108,9 @@ void Math::init(U32 properties)
Con::printf("Math Init:");
Con::printf(" Installing Standard C extensions");
mInstallLibrary_C();
mInstallLibrary_C();
math_backend::install_from_cpu_flags(properties);
#ifdef TORQUE_CPU_X86
if( properties & CPU_PROP_SSE )