From 140c3118c29bba18013e4bf50c660598cd705d1e Mon Sep 17 00:00:00 2001 From: karurochari Date: Tue, 25 Feb 2025 16:06:28 +0000 Subject: [PATCH] Added support for bvecX not operator --- glm/detail/type_vec1.hpp | 3 +++ glm/detail/type_vec1.inl | 7 +++++++ glm/detail/type_vec2.hpp | 3 +++ glm/detail/type_vec2.inl | 8 ++++++++ glm/detail/type_vec3.hpp | 5 ++--- glm/detail/type_vec3.inl | 10 ++++++++++ glm/detail/type_vec4.hpp | 3 +++ glm/detail/type_vec4.inl | 6 ++++++ 8 files changed, 42 insertions(+), 3 deletions(-) diff --git a/glm/detail/type_vec1.hpp b/glm/detail/type_vec1.hpp index 0cc7b5d4..183bf56d 100644 --- a/glm/detail/type_vec1.hpp +++ b/glm/detail/type_vec1.hpp @@ -301,6 +301,9 @@ namespace glm template GLM_FUNC_DECL GLM_CONSTEXPR vec<1, bool, Q> operator||(vec<1, bool, Q> const& v1, vec<1, bool, Q> const& v2); + + template + GLM_FUNC_DECL GLM_CONSTEXPR vec<1, bool, Q> operator!(vec<1, bool, Q> const& v); }//namespace glm #ifndef GLM_EXTERNAL_TEMPLATE diff --git a/glm/detail/type_vec1.inl b/glm/detail/type_vec1.inl index 18411e7f..38a6fe82 100644 --- a/glm/detail/type_vec1.inl +++ b/glm/detail/type_vec1.inl @@ -550,4 +550,11 @@ namespace glm { return vec<1, bool, Q>(v1.x || v2.x); } + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<1, bool, Q> operator!(vec<1, bool, Q> const& v) + { + return vec<1, bool, Q>( + !v.x); + } }//namespace glm diff --git a/glm/detail/type_vec2.hpp b/glm/detail/type_vec2.hpp index 66c6137c..4f02fa27 100644 --- a/glm/detail/type_vec2.hpp +++ b/glm/detail/type_vec2.hpp @@ -399,6 +399,9 @@ namespace glm template GLM_FUNC_DECL GLM_CONSTEXPR vec<2, bool, Q> operator||(vec<2, bool, Q> const& v1, vec<2, bool, Q> const& v2); + + template + GLM_FUNC_DECL GLM_CONSTEXPR vec<2, bool, Q> operator!(vec<2, bool, Q> const& v); }//namespace glm #ifndef GLM_EXTERNAL_TEMPLATE diff --git a/glm/detail/type_vec2.inl b/glm/detail/type_vec2.inl index e8408997..a5bf6693 100644 --- a/glm/detail/type_vec2.inl +++ b/glm/detail/type_vec2.inl @@ -912,4 +912,12 @@ namespace glm { return vec<2, bool, Q>(v1.x || v2.x, v1.y || v2.y); } + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<2, bool, Q> operator!(vec<2, bool, Q> const& v) + { + return vec<2, bool, Q>( + !v.x, + !v.y); + } }//namespace glm diff --git a/glm/detail/type_vec3.hpp b/glm/detail/type_vec3.hpp index 90de2f8a..2ac41660 100644 --- a/glm/detail/type_vec3.hpp +++ b/glm/detail/type_vec3.hpp @@ -437,9 +437,8 @@ namespace glm template GLM_FUNC_DECL GLM_CONSTEXPR vec<3, bool, Q> operator||(vec<3, bool, Q> const& v1, vec<3, bool, Q> const& v2); - - - + template + GLM_FUNC_DECL GLM_CONSTEXPR vec<3, bool, Q> operator!(vec<3, bool, Q> const& v); }//namespace glm #ifndef GLM_EXTERNAL_TEMPLATE diff --git a/glm/detail/type_vec3.inl b/glm/detail/type_vec3.inl index fed82bf6..c70efe0d 100644 --- a/glm/detail/type_vec3.inl +++ b/glm/detail/type_vec3.inl @@ -827,6 +827,16 @@ namespace glm { return vec<3, bool, Q>(v1.x || v2.x, v1.y || v2.y, v1.z || v2.z); } + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<3, bool, Q> operator!(vec<3, bool, Q> const& v) + { + return vec<3, bool, Q>( + !v.x, + !v.y, + !v.z); + } + }//namespace glm diff --git a/glm/detail/type_vec4.hpp b/glm/detail/type_vec4.hpp index 9ba11229..431b3d6d 100644 --- a/glm/detail/type_vec4.hpp +++ b/glm/detail/type_vec4.hpp @@ -507,6 +507,9 @@ namespace glm template GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> operator||(vec<4, bool, Q> const& v1, vec<4, bool, Q> const& v2); + + template + GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> operator!(vec<4, bool, Q> const& v); }//namespace glm #ifndef GLM_EXTERNAL_TEMPLATE diff --git a/glm/detail/type_vec4.inl b/glm/detail/type_vec4.inl index 66539e30..2ee173db 100644 --- a/glm/detail/type_vec4.inl +++ b/glm/detail/type_vec4.inl @@ -1018,6 +1018,12 @@ namespace detail { return vec<4, bool, Q>(v1.x || v2.x, v1.y || v2.y, v1.z || v2.z, v1.w || v2.w); } + + template + GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<4, bool, Q> operator!(vec<4, bool, Q> const& v) + { + return vec<4, bool, Q>(!v.x, !v.y, !v.z, !v.w); + } }//namespace glm #if GLM_CONFIG_SIMD == GLM_ENABLE