From 0b7ee87489a7957d5401a2204f54128410755edf Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Sun, 28 Jan 2024 00:04:12 +0000 Subject: [PATCH] GLM 1.0 compatibility (#721) Using glm/gtx/compatibility.hpp without GLM_ENABLE_EXPERIMENTAL has become an error: error: #error "GLM: GLM_GTX_compatibility is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." --- src/utilities/include/public.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utilities/include/public.h b/src/utilities/include/public.h index 48945ade3..01358127a 100644 --- a/src/utilities/include/public.h +++ b/src/utilities/include/public.h @@ -13,6 +13,7 @@ // limitations under the License. #pragma once +#define GLM_ENABLE_EXPERIMENTAL // needed for glm/gtx/compatibility.hpp #define GLM_FORCE_EXPLICIT_CTOR #include #include