Fixed test

This commit is contained in:
Christophe Riccio 2018-01-04 15:54:49 +01:00
parent 43179a4bc1
commit 85811f3860

View File

@ -227,7 +227,8 @@ int test_ctr()
{0, 0, 1, 0},
{0, 0, 0, 1} };
Error += glm::equal(m4[0][3], 1.0f, 0.0001f) ? 0 : 1;
Error += glm::equal(m4[0][0], 1.0f, 0.0001f) ? 0 : 1;
Error += glm::equal(m4[3][3], 1.0f, 0.0001f) ? 0 : 1;
std::vector<glm::mat4> v1{
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15},