diff --git a/test/core/core_type_mat4x4.cpp b/test/core/core_type_mat4x4.cpp index 9f0b7855..a056112c 100644 --- a/test/core/core_type_mat4x4.cpp +++ b/test/core/core_type_mat4x4.cpp @@ -9,33 +9,35 @@ template static int test_operators() { + typedef typename matType::value_type value_type; + + value_type const Epsilon = static_cast(0.001); + int Error = 0; - - float const Epsilon = 0.001f; - - matType const M(2.0f); - matType const N(1.0f); - vecType const U(2.0f); + + matType const M(static_cast(2.0f)); + matType const N(static_cast(1.0f)); + vecType const U(static_cast(2.0f)); { - matType const P = N * 2.0f; + matType const P = N * static_cast(2.0f); Error += glm::all(glm::equal(P, M, Epsilon)) ? 0 : 1; - matType const Q = M / 2.0f; + matType const Q = M / static_cast(2.0f); Error += glm::all(glm::equal(Q, N, Epsilon)) ? 0 : 1; } { vecType const V = M * U; - Error += glm::all(glm::equal(V, vecType(4.f), Epsilon)) ? 0 : 1; + Error += glm::all(glm::equal(V, vecType(static_cast(4.f)), Epsilon)) ? 0 : 1; vecType const W = U / M; - Error += glm::all(glm::equal(W, vecType(1.f), Epsilon)) ? 0 : 1; + Error += glm::all(glm::equal(W, vecType(static_cast(1.f)), Epsilon)) ? 0 : 1; } { matType const O = M * N; - Error += glm::all(glm::equal(O, matType(2.f), Epsilon)) ? 0 : 1; + Error += glm::all(glm::equal(O, matType(static_cast(2.f)), Epsilon)) ? 0 : 1; } return Error; @@ -46,11 +48,11 @@ static int test_inverse() { typedef typename matType::value_type value_type; - value_type const Epsilon = 0.001f; + value_type const Epsilon = static_cast(0.001); int Error = 0; - matType const Identity(1.0f); + matType const Identity(static_cast(1.0f)); matType const Matrix( glm::vec4(0.6f, 0.2f, 0.3f, 0.4f), glm::vec4(0.2f, 0.7f, 0.5f, 0.3f), @@ -182,24 +184,28 @@ int main() int Error = 0; Error += test_member_alloc_bug(); - Error += test_ctr(); - + Error += test_operators(); Error += test_operators(); Error += test_operators(); Error += test_operators(); - + + Error += test_operators(); + Error += test_operators(); + Error += test_operators(); + Error += test_operators(); + Error += test_inverse(); Error += test_inverse(); Error += test_inverse(); Error += test_inverse(); - + Error += test_inverse(); Error += test_inverse(); Error += test_inverse(); Error += test_inverse(); - + Error += test_size(); Error += test_constexpr();