Bring back quaternion to xyzw storage to remain backward compatible #942

master
Christophe Riccio ago%!(EXTRA string=6 years)
parent 9a32317065
commit 247beeb5bf
  1. 2
      glm/detail/type_quat.hpp

@ -47,7 +47,7 @@ namespace glm
typename detail::storage<4, T, detail::is_aligned<Q>::value>::type data;
};
# else
T w, x, y, z;
T x, y, z, w;
# endif
# if GLM_SILENT_WARNINGS == GLM_ENABLE

Loading…
Cancel
Save