Hash hashes qua instead of tquat closes #919
This commit is contained in:
parent
fce2abd01c
commit
9a1f85ae79
@ -73,9 +73,9 @@ namespace std
|
||||
};
|
||||
|
||||
template<typename T, glm::qualifier Q>
|
||||
struct hash<glm::tquat<T,Q>>
|
||||
struct hash<glm::qua<T,Q>>
|
||||
{
|
||||
GLM_FUNC_DECL size_t operator()(glm::tquat<T, Q> const& q) const;
|
||||
GLM_FUNC_DECL size_t operator()(glm::qua<T, Q> const& q) const;
|
||||
};
|
||||
|
||||
template<typename T, glm::qualifier Q>
|
||||
|
@ -62,7 +62,7 @@ namespace std
|
||||
}
|
||||
|
||||
template<typename T, glm::qualifier Q>
|
||||
GLM_FUNC_QUALIFIER size_t hash<glm::tquat<T, Q>>::operator()(glm::tquat<T,Q> const& q) const
|
||||
GLM_FUNC_QUALIFIER size_t hash<glm::qua<T, Q>>::operator()(glm::qua<T,Q> const& q) const
|
||||
{
|
||||
size_t seed = 0;
|
||||
hash<T> hasher;
|
||||
@ -77,7 +77,7 @@ namespace std
|
||||
GLM_FUNC_QUALIFIER size_t hash<glm::tdualquat<T, Q>>::operator()(glm::tdualquat<T, Q> const& q) const
|
||||
{
|
||||
size_t seed = 0;
|
||||
hash<glm::tquat<T, Q>> hasher;
|
||||
hash<glm::qua<T, Q>> hasher;
|
||||
glm::detail::hash_combine(seed, hasher(q.real));
|
||||
glm::detail::hash_combine(seed, hasher(q.dual));
|
||||
return seed;
|
||||
|
Loading…
Reference in New Issue
Block a user