|
@@ -62,6 +62,42 @@ namespace glm
|
|
|
template<length_t L, typename T, qualifier Q>
|
|
template<length_t L, typename T, qualifier Q>
|
|
|
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& epsilon);
|
|
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& epsilon);
|
|
|
|
|
|
|
|
|
|
+ /// Returns the component-wise comparison between two vectors in term of ULPs.
|
|
|
|
|
+ /// True if this expression is satisfied.
|
|
|
|
|
+ ///
|
|
|
|
|
+ /// @tparam L Integer between 1 and 4 included that qualify the dimension of the vector
|
|
|
|
|
+ /// @tparam T Floating-point
|
|
|
|
|
+ /// @tparam Q Value from qualifier enum
|
|
|
|
|
+ template<length_t L, typename T, qualifier Q>
|
|
|
|
|
+ GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y, int ULPs);
|
|
|
|
|
+
|
|
|
|
|
+ /// Returns the component-wise comparison between two vectors in term of ULPs.
|
|
|
|
|
+ /// True if this expression is satisfied.
|
|
|
|
|
+ ///
|
|
|
|
|
+ /// @tparam L Integer between 1 and 4 included that qualify the dimension of the vector
|
|
|
|
|
+ /// @tparam T Floating-point
|
|
|
|
|
+ /// @tparam Q Value from qualifier enum
|
|
|
|
|
+ template<length_t L, typename T, qualifier Q>
|
|
|
|
|
+ GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, int, Q> const& ULPs);
|
|
|
|
|
+
|
|
|
|
|
+ /// Returns the component-wise comparison between two vectors in term of ULPs.
|
|
|
|
|
+ /// True if this expression is not satisfied.
|
|
|
|
|
+ ///
|
|
|
|
|
+ /// @tparam L Integer between 1 and 4 included that qualify the dimension of the vector
|
|
|
|
|
+ /// @tparam T Floating-point
|
|
|
|
|
+ /// @tparam Q Value from qualifier enum
|
|
|
|
|
+ template<length_t L, typename T, qualifier Q>
|
|
|
|
|
+ GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, int ULPs);
|
|
|
|
|
+
|
|
|
|
|
+ /// Returns the component-wise comparison between two vectors in term of ULPs.
|
|
|
|
|
+ /// True if this expression is not satisfied.
|
|
|
|
|
+ ///
|
|
|
|
|
+ /// @tparam L Integer between 1 and 4 included that qualify the dimension of the vector
|
|
|
|
|
+ /// @tparam T Floating-point
|
|
|
|
|
+ /// @tparam Q Value from qualifier enum
|
|
|
|
|
+ template<length_t L, typename T, qualifier Q>
|
|
|
|
|
+ GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, int, Q> const& ULPs);
|
|
|
|
|
+
|
|
|
/// @}
|
|
/// @}
|
|
|
}//namespace glm
|
|
}//namespace glm
|
|
|
|
|
|