From 12daf190660a03abf915b5378be2e94dac5a272a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tur=C3=A1nszki=20J=C3=A1nos?= Date: Sat, 19 Apr 2025 08:26:14 +0200 Subject: [PATCH] disabled f16 and fma on linux to fix build --- WickedEngine/wiMath.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/WickedEngine/wiMath.h b/WickedEngine/wiMath.h index dcee086ce..d0376ba37 100644 --- a/WickedEngine/wiMath.h +++ b/WickedEngine/wiMath.h @@ -5,13 +5,12 @@ #include #include -#define _XM_F16C_INTRINSICS_ -#define _XM_FMA3_INTRINSICS_ - #if __has_include("DirectXMath.h") // In this case, DirectXMath is coming from Windows SDK. // It is better to use this on Windows as some Windows libraries could depend on the same // DirectXMath headers +#define _XM_F16C_INTRINSICS_ +#define _XM_FMA3_INTRINSICS_ #include #include #include