Browse Source

Fixed quaternion mul/vec test

Christophe Riccio 11 years ago
parent
commit
83f594b5ed
1 changed files with 5 additions and 1 deletions
  1. 5 1
      test/gtc/gtc_quaternion.cpp

+ 5 - 1
test/gtc/gtc_quaternion.cpp

@@ -258,12 +258,16 @@ int test_quat_type()
 
 int test_quat_mul_vec()
 {
+	int Error(0);
+
 	glm::quat q = glm::angleAxis(glm::pi<float>() * 0.5f, glm::vec3(0, 0, 1));
 	glm::vec3 v(1, 0, 0);
 	glm::vec3 u(q * v);
 	glm::vec3 w(u * q);
 
-	return glm::all(glm::epsilonEqual(v, w, 0.01f));
+	Error += glm::all(glm::epsilonEqual(v, w, 0.01f)) ? 0 : 1;
+
+	return Error;
 }
 
 int test_quat_ctr()