Fixes #14709. Same as https://github.com/Thekla/thekla_atlas/pull/11, but adding comments until it's merged upstream.
@@ -53,7 +53,10 @@ namespace nv
return (val<0) ? ftoi_ceil_xs(val) : ftoi_floor_xs(val);
}
-#if NV_CPU_X86 || NV_CPU_X86_64
+// -- GODOT start --
+//#if NV_CPU_X86 || NV_CPU_X86_64
+#if NV_USE_SSE
+// -- GODOT end --
NV_FORCEINLINE int ftoi_round_sse(float f) {
return _mm_cvt_ss2si(_mm_set_ss(f));
@@ -14,10 +14,12 @@
#include <float.h> // finite, isnan
#endif
- //#include <intrin.h>
- #include <xmmintrin.h>
-#endif
+// //#include <intrin.h>
+// #include <xmmintrin.h>
+//#endif
@@ -65,6 +67,13 @@
+ //#include <intrin.h>
+ #include <xmmintrin.h>
+#endif
+
#ifndef PI
#define PI float(3.1415926535897932384626433833)