From 47d79ef47d1f98b5fb5201529938e68b63a1c91d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 31 May 2018 16:37:20 +0200 Subject: [PATCH] Math: add GLSL bvec* as keywords for BoolVector. --- src/Magnum/Math/BoolVector.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Magnum/Math/BoolVector.h b/src/Magnum/Math/BoolVector.h index 79a94563b..b8044f020 100644 --- a/src/Magnum/Math/BoolVector.h +++ b/src/Magnum/Math/BoolVector.h @@ -62,6 +62,10 @@ Result of component-wise comparison from @ref Vector. The boolean values are stored as bits in array of unsigned bytes, unused bits have undefined value which doesn't affect comparison or @ref all() / @ref none() / @ref any() functions. See also @ref matrix-vector for brief introduction. + +@m_keyword{bvec2,GLSL bvec2,} +@m_keyword{bvec3,GLSL bvec3,} +@m_keyword{bvec4,GLSL bvec4,} */ template class BoolVector { static_assert(size != 0, "BoolVector cannot have zero elements");