From 1190ae0b0e6ab38dc4a650ce7ad79be66a7a4de1 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 22 Nov 2017 18:36:36 +0100 Subject: [PATCH] Added test --- test/core/core_type_mat4x4.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/core/core_type_mat4x4.cpp b/test/core/core_type_mat4x4.cpp index fd2aca8b..29e8536d 100644 --- a/test/core/core_type_mat4x4.cpp +++ b/test/core/core_type_mat4x4.cpp @@ -1,5 +1,6 @@ #include #include +#include #include #include #include @@ -220,6 +221,14 @@ int test_ctr() {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}}; + glm::mat4 m4{ + {1, 0, 0, 0}, + {0, 1, 0, 0}, + {0, 0, 1, 0}, + {0, 0, 0, 1} }; + + Error += glm::equal(m4[0][3], 1.0f, 0.0001f) ? 0 : 1; + std::vector v1{ {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}};