diff --git a/glm/core/func_vector_relational.hpp b/glm/core/func_vector_relational.hpp index 66932279..817e6fa7 100644 --- a/glm/core/func_vector_relational.hpp +++ b/glm/core/func_vector_relational.hpp @@ -20,7 +20,7 @@ namespace glm namespace core{ namespace function{ - //! Define vector relational functions from Section 8.3 of GLSL 1.30.8 specification. + //! Define vector relational functions from Section 8.6 of GLSL 1.30.8 specification. //! Included in glm namespace. namespace vector_relational { @@ -28,8 +28,9 @@ namespace glm ///@{ //! Returns the component-wise comparison result of x < y. - //! (From GLSL 1.30.08 specification, section 8.6) - template class vecType> + //! + //! \li GLSL lessThan man page + //! \li GLSL 1.30.08 specification, section 8.6 inline typename vecType::bool_type lessThan ( vecType const & x, @@ -49,7 +50,9 @@ namespace glm } //! Returns the component-wise comparison of result x <= y. - //! (From GLSL 1.30.08 specification, section 8.6) + //! + //! \li GLSL lessThanEqual man page + //! \li GLSL 1.30.08 specification, section 8.6 template class vecType> inline typename vecType::bool_type lessThanEqual ( @@ -69,7 +72,9 @@ namespace glm } //! Returns the component-wise comparison of result x > y. - //! (From GLSL 1.30.08 specification, section 8.6) + //! + //! \li GLSL greaterThan man page + //! \li GLSL 1.30.08 specification, section 8.6 template class vecType> inline typename vecType::bool_type greaterThan ( @@ -89,7 +94,9 @@ namespace glm } //! Returns the component-wise comparison of result x >= y. - //! (From GLSL 1.30.08 specification, section 8.6) + //! + //! \li GLSL greaterThanEqual man page + //! \li GLSL 1.30.08 specification, section 8.6 template class vecType> inline typename vecType::bool_type greaterThanEqual ( @@ -109,7 +116,9 @@ namespace glm } //! Returns the component-wise comparison of result x == y. - //! (From GLSL 1.30.08 specification, section 8.6) + //! + //! \li GLSL equal man page + //! \li GLSL 1.30.08 specification, section 8.6 template class vecType> inline typename vecType::bool_type equal ( @@ -127,7 +136,9 @@ namespace glm } //! Returns the component-wise comparison of result x != y. - //! (From GLSL 1.30.08 specification, section 8.6) + //! + //! \li GLSL notEqual man page + //! \li GLSL 1.30.08 specification, section 8.6 template class vecType> inline typename vecType::bool_type notEqual ( @@ -145,7 +156,9 @@ namespace glm } //! Returns true if any component of x is true. - //! (From GLSL 1.30.08 specification, section 8.6) + //! + //! \li GLSL any man page + //! \li GLSL 1.30.08 specification, section 8.6 template