#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static int test_operators() { glm::mat2x4 l(1.0f); glm::mat2x4 m(1.0f); glm::vec2 u(1.0f); glm::vec4 v(1.0f); float x = 1.0f; glm::vec4 a = m * u; glm::vec2 b = v * m; glm::mat2x4 n = x / m; glm::mat2x4 o = m / x; glm::mat2x4 p = x * m; glm::mat2x4 q = m * x; bool R = glm::any(glm::notEqual(m, q, glm::epsilon())); bool S = glm::all(glm::equal(m, l, glm::epsilon())); return (S && !R) ? 0 : 1; } int test_ctr() { int Error(0); #if(GLM_HAS_INITIALIZER_LISTS) glm::mat2x4 m0( glm::vec4(0, 1, 2, 3), glm::vec4(4, 5, 6, 7)); glm::mat2x4 m1{0, 1, 2, 3, 4, 5, 6, 7}; glm::mat2x4 m2{ {0, 1, 2, 3}, {4, 5, 6, 7}}; Error += glm::all(glm::equal(m0, m2, glm::epsilon())) ? 0 : 1; Error += glm::all(glm::equal(m1, m2, glm::epsilon())) ? 0 : 1; std::vector v1{ {0, 1, 2, 3, 4, 5, 6, 7}, {0, 1, 2, 3, 4, 5, 6, 7} }; std::vector v2{ { { 0, 1, 2, 3}, { 4, 5, 6, 7} }, { { 0, 1, 2, 3}, { 4, 5, 6, 7} } }; #endif//GLM_HAS_INITIALIZER_LISTS return Error; } namespace cast { template int entry() { int Error = 0; genType A(1.0f); glm::mat2x4 B(A); glm::mat2x4 Identity(1.0f); for(glm::length_t i = 0, length = B.length(); i < length; ++i) Error += glm::all(glm::epsilonEqual(B[i], Identity[i], glm::epsilon())) ? 0 : 1; return Error; } int test() { int Error = 0; Error += entry(); Error += entry(); Error += entry(); Error += entry(); Error += entry(); Error += entry(); Error += entry(); Error += entry(); Error += entry(); return Error; } }//namespace cast static int test_size() { int Error = 0; Error += 32 == sizeof(glm::mat2x4) ? 0 : 1; Error += 64 == sizeof(glm::dmat2x4) ? 0 : 1; Error += glm::mat2x4().length() == 2 ? 0 : 1; Error += glm::dmat2x4().length() == 2 ? 0 : 1; Error += glm::mat2x4::length() == 2 ? 0 : 1; Error += glm::dmat2x4::length() == 2 ? 0 : 1; return Error; } static int test_constexpr() { #if GLM_HAS_CONSTEXPR static_assert(glm::mat2x4::length() == 2, "GLM: Failed constexpr"); #endif return 0; } int main() { int Error = 0; Error += cast::test(); Error += test_ctr(); Error += test_operators(); Error += test_size(); Error += test_constexpr(); return Error; }