From 2c236f4e1a96e89a5b5bc8b4a5851d6820aa62da Mon Sep 17 00:00:00 2001 From: sharkautarch <128002472+sharkautarch@users.noreply.github.com> Date: Thu, 12 Sep 2024 10:44:07 -0400 Subject: [PATCH] simd constexpr vec: allow SIMD bit to be set if GLM_SIMD_CONSTEXPR == 1 --- glm/simd/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/simd/platform.h b/glm/simd/platform.h index a318b098..9dd60071 100644 --- a/glm/simd/platform.h +++ b/glm/simd/platform.h @@ -373,7 +373,7 @@ #elif defined(GLM_FORCE_SSE) # define GLM_ARCH (GLM_ARCH_SSE) # define GLM_FORCE_INTRINSICS -#elif defined(GLM_FORCE_INTRINSICS) && !defined(GLM_FORCE_XYZW_ONLY) +#elif ( (defined(GLM_FORCE_INTRINSICS) && !defined(GLM_FORCE_XYZW_ONLY)) || GLM_SIMD_CONSTEXPR == 1 ) # if defined(__AVX2__) # define GLM_ARCH (GLM_ARCH_AVX2) # elif defined(__AVX__)