Browse Source

Fixed test

Christophe Riccio 9 years ago
parent
commit
be8d6c9ccc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/core/core_type_vec4.cpp

+ 1 - 1
test/core/core_type_vec4.cpp

@@ -494,7 +494,7 @@ int test_vec4_simd()
 	glm::tvec4<float, glm::simd> c(b * a);
 	glm::tvec4<float, glm::simd> c(b * a);
 	glm::tvec4<float, glm::simd> d(a + c);
 	glm::tvec4<float, glm::simd> d(a + c);
 
 
-	Error += glm::all(glm::greaterThan(d, glm::tvec4<float, glm::simd>(0))) ? 0 : 1;
+	Error += glm::all(glm::greaterThanEqual(d, glm::tvec4<float, glm::simd>(0))) ? 0 : 1;
 
 
 	return Error;
 	return Error;
 }
 }