From 7647a0153fc29cd9ec147732bf2b28f7607e6cdc Mon Sep 17 00:00:00 2001 From: Adam Lusch Date: Thu, 20 Mar 2025 19:02:53 -0500 Subject: [PATCH 1/2] isfinite support for quaternions --- glm/gtx/compatibility.hpp | 1 + glm/gtx/compatibility.inl | 11 +++++++++++ test/gtx/gtx_compatibility.cpp | 29 +++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) diff --git a/glm/gtx/compatibility.hpp b/glm/gtx/compatibility.hpp index 463f86fe..376f8a0b 100644 --- a/glm/gtx/compatibility.hpp +++ b/glm/gtx/compatibility.hpp @@ -60,6 +60,7 @@ namespace glm template GLM_FUNC_DECL vec<2, bool, Q> isfinite(const vec<2, T, Q>& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility) template GLM_FUNC_DECL vec<3, bool, Q> isfinite(const vec<3, T, Q>& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility) template GLM_FUNC_DECL vec<4, bool, Q> isfinite(const vec<4, T, Q>& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility) + template GLM_FUNC_DECL vec<4, bool, Q> isfinite(const qua& x); //!< \brief Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility) typedef bool bool1; //!< \brief boolean type with 1 component. (From GLM_GTX_compatibility extension) typedef vec<2, bool, highp> bool2; //!< \brief boolean type with 2 components. (From GLM_GTX_compatibility extension) diff --git a/glm/gtx/compatibility.inl b/glm/gtx/compatibility.inl index 1d49496b..3e1571bc 100644 --- a/glm/gtx/compatibility.inl +++ b/glm/gtx/compatibility.inl @@ -59,4 +59,15 @@ namespace glm isfinite(x.w)); } + template + GLM_FUNC_QUALIFIER vec<4, bool, Q> isfinite( + qua const& x) + { + return vec<4, bool, Q>( + isfinite(x.x), + isfinite(x.y), + isfinite(x.z), + isfinite(x.w)); + } + }//namespace glm diff --git a/test/gtx/gtx_compatibility.cpp b/test/gtx/gtx_compatibility.cpp index e5351ce6..00e37916 100644 --- a/test/gtx/gtx_compatibility.cpp +++ b/test/gtx/gtx_compatibility.cpp @@ -5,6 +5,9 @@ int main() { int Error(0); + float Zero_f = 0.0; + double Zero_d = 0.0; + Error += glm::isfinite(1.0f) ? 0 : 1; Error += glm::isfinite(1.0) ? 0 : 1; Error += glm::isfinite(-1.0f) ? 0 : 1; @@ -15,5 +18,31 @@ int main() Error += glm::all(glm::isfinite(glm::vec4(-1.0f))) ? 0 : 1; Error += glm::all(glm::isfinite(glm::dvec4(-1.0))) ? 0 : 1; + Error += glm::all(glm::isfinite(glm::quat(1.0f, 1.0f, 1.0f, 1.0f))) ? 0 : 1; + Error += glm::all(glm::isfinite(glm::dquat(1.0, 1.0, 1.0, 1.0))) ? 0 : 1; + Error += glm::all(glm::isfinite(glm::quat(-1.0f, -1.0f, -1.0f, -1.0f))) ? 0 : 1; + Error += glm::all(glm::isfinite(glm::dquat(-1.0, -1.0, -1.0, -1.0))) ? 0 : 1; + + Error += glm::isfinite(0.0f/Zero_f) ? 1 : 0; + Error += glm::isfinite(0.0/Zero_d) ? 1 : 0; + Error += glm::isfinite(1.0f/Zero_f) ? 1 : 0; + Error += glm::isfinite(1.0/Zero_d) ? 1 : 0; + Error += glm::isfinite(-1.0f/Zero_f) ? 1 : 0; + Error += glm::isfinite(-1.0/Zero_d) ? 1 : 0; + + Error += glm::all(glm::isfinite(glm::vec4(0.0f/Zero_f))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::dvec4(0.0/Zero_d))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::vec4(1.0f/Zero_f))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::dvec4(1.0/Zero_d))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::vec4(-1.0f/Zero_f))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::dvec4(-1.0/Zero_d))) ? 1 : 0; + + Error += glm::all(glm::isfinite(glm::quat(0.0f/Zero_f, 0.0f/Zero_f, 0.0f/Zero_f, 0.0f/Zero_f))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::dquat(0.0/Zero_d, 0.0/Zero_d, 0.0/Zero_d, 0.0/Zero_d))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::quat(1.0f/Zero_f, 1.0f/Zero_f, 1.0f/Zero_f, 1.0f/Zero_f))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::dquat(1.0/Zero_d, 1.0/Zero_d, 1.0/Zero_d, 1.0/Zero_d))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::quat(-1.0f/Zero_f, -1.0f/Zero_f, -1.0f/Zero_f, -1.0f/Zero_f))) ? 1 : 0; + Error += glm::all(glm::isfinite(glm::dquat(-1.0/Zero_d, -1.0/Zero_d, -1.0/Zero_d, -1.0/Zero_d))) ? 1 : 0; + return Error; } From fa8c28db6b4ee320a845be6f793ba31211545047 Mon Sep 17 00:00:00 2001 From: Adam Lusch Date: Thu, 20 Mar 2025 19:09:59 -0500 Subject: [PATCH 2/2] Make test more specific --- test/gtx/gtx_compatibility.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/gtx/gtx_compatibility.cpp b/test/gtx/gtx_compatibility.cpp index 00e37916..3cefabd1 100644 --- a/test/gtx/gtx_compatibility.cpp +++ b/test/gtx/gtx_compatibility.cpp @@ -30,19 +30,19 @@ int main() Error += glm::isfinite(-1.0f/Zero_f) ? 1 : 0; Error += glm::isfinite(-1.0/Zero_d) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::vec4(0.0f/Zero_f))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::dvec4(0.0/Zero_d))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::vec4(1.0f/Zero_f))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::dvec4(1.0/Zero_d))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::vec4(-1.0f/Zero_f))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::dvec4(-1.0/Zero_d))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::vec4(0.0f/Zero_f))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::dvec4(0.0/Zero_d))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::vec4(1.0f/Zero_f))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::dvec4(1.0/Zero_d))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::vec4(-1.0f/Zero_f))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::dvec4(-1.0/Zero_d))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::quat(0.0f/Zero_f, 0.0f/Zero_f, 0.0f/Zero_f, 0.0f/Zero_f))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::dquat(0.0/Zero_d, 0.0/Zero_d, 0.0/Zero_d, 0.0/Zero_d))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::quat(1.0f/Zero_f, 1.0f/Zero_f, 1.0f/Zero_f, 1.0f/Zero_f))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::dquat(1.0/Zero_d, 1.0/Zero_d, 1.0/Zero_d, 1.0/Zero_d))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::quat(-1.0f/Zero_f, -1.0f/Zero_f, -1.0f/Zero_f, -1.0f/Zero_f))) ? 1 : 0; - Error += glm::all(glm::isfinite(glm::dquat(-1.0/Zero_d, -1.0/Zero_d, -1.0/Zero_d, -1.0/Zero_d))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::quat(0.0f/Zero_f, 0.0f/Zero_f, 0.0f/Zero_f, 0.0f/Zero_f))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::dquat(0.0/Zero_d, 0.0/Zero_d, 0.0/Zero_d, 0.0/Zero_d))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::quat(1.0f/Zero_f, 1.0f/Zero_f, 1.0f/Zero_f, 1.0f/Zero_f))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::dquat(1.0/Zero_d, 1.0/Zero_d, 1.0/Zero_d, 1.0/Zero_d))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::quat(-1.0f/Zero_f, -1.0f/Zero_f, -1.0f/Zero_f, -1.0f/Zero_f))) ? 1 : 0; + Error += glm::any(glm::isfinite(glm::dquat(-1.0/Zero_d, -1.0/Zero_d, -1.0/Zero_d, -1.0/Zero_d))) ? 1 : 0; return Error; }