diff --git a/glm/gtx/io.hpp b/glm/gtx/io.hpp index 566ce6b9..c2476449 100644 --- a/glm/gtx/io.hpp +++ b/glm/gtx/io.hpp @@ -163,7 +163,7 @@ namespace glm }//namespace io template - GLM_FUNC_DECL std::basic_ostream& operator<<(std::basic_ostream&, tquat const&); + GLM_FUNC_DECL std::basic_ostream& operator<<(std::basic_ostream&, qua const&); template GLM_FUNC_DECL std::basic_ostream& operator<<(std::basic_ostream&, vec<1, T, Q> const&); template diff --git a/glm/gtx/io.inl b/glm/gtx/io.inl index 054facbf..a3a1bb6c 100644 --- a/glm/gtx/io.inl +++ b/glm/gtx/io.inl @@ -195,7 +195,7 @@ namespace detail }//namespace detail template - GLM_FUNC_QUALIFIER std::basic_ostream& operator<<(std::basic_ostream& os, tquat const& a) + GLM_FUNC_QUALIFIER std::basic_ostream& operator<<(std::basic_ostream& os, qua const& a) { return detail::print_vector_on(os, a); } diff --git a/test/core/core_force_xyzw_only.cpp b/test/core/core_force_xyzw_only.cpp index 6d66ea96..43576e0e 100644 --- a/test/core/core_force_xyzw_only.cpp +++ b/test/core/core_force_xyzw_only.cpp @@ -1,11 +1,13 @@ #define GLM_FORCE_XYZW_ONLY +#include +#include #include #include #include #include -int test_comp() +static int test_comp() { int Error = 0; @@ -38,12 +40,19 @@ int test_comp() return Error; } +static int test_constexpr() +{ + int Error = 0; + + return Error; +} + int main() { int Error = 0; Error += test_comp(); + Error += test_constexpr(); return Error; } - diff --git a/test/ext/ext_scalar_relational.cpp b/test/ext/ext_scalar_relational.cpp index 7b4bcd05..a4c2bfdc 100644 --- a/test/ext/ext_scalar_relational.cpp +++ b/test/ext/ext_scalar_relational.cpp @@ -2,6 +2,9 @@ int test_equal() { + static_assert(glm::equal(1.01f, 1.02f, 0.1f), "GLM: Failed constexpr"); + static_assert(!glm::equal(1.01f, 1.02f, 0.001f), "GLM: Failed constexpr"); + int Error = 0; Error += glm::equal(1.01f, 1.02f, 0.1f) ? 0 : 1; @@ -12,6 +15,9 @@ int test_equal() int test_notEqual() { + static_assert(glm::notEqual(1.01f, 1.02f, 0.001f), "GLM: Failed constexpr"); + static_assert(!glm::notEqual(1.01f, 1.02f, 0.1f), "GLM: Failed constexpr"); + int Error = 0; Error += glm::notEqual(1.01f, 1.02f, 0.001f) ? 0 : 1; diff --git a/test/gtx/gtx_io.cpp b/test/gtx/gtx_io.cpp index 4ddb79e4..7d90fd78 100644 --- a/test/gtx/gtx_io.cpp +++ b/test/gtx/gtx_io.cpp @@ -36,7 +36,7 @@ namespace { std::basic_ostringstream ostr; - if (typeid(T) == typeid(glm::tquat)) { ostr << "quat"; } + if (typeid(T) == typeid(glm::qua)) { ostr << "quat"; } else if (typeid(T) == typeid(glm::vec<2, U,P>)) { ostr << "vec2"; } else if (typeid(T) == typeid(glm::vec<3, U,P>)) { ostr << "vec3"; } else if (typeid(T) == typeid(glm::vec<4, U,P>)) { ostr << "vec4"; } @@ -62,20 +62,20 @@ int test_io_quat(OS& os) { os << '\n' << typeid(OS).name() << '\n'; - glm::tquat const q(1, 0, 0, 0); + glm::qua const q(1, 0, 0, 0); { glm::io::basic_format_saver const iofs(os); os << glm::io::precision(2) << glm::io::width(1 + 2 + 1 + 2) - << type_name(os, q) << ": " << q << '\n'; + << type_name(os, q) << ": " << q << '\n'; } { glm::io::basic_format_saver const iofs(os); os << glm::io::unformatted - << type_name(os, q) << ": " << q << '\n'; + << type_name(os, q) << ": " << q << '\n'; } return 0;