Fixed test

This commit is contained in:
Christophe Riccio 2016-05-01 01:40:06 +02:00
parent fa6f5cdcbb
commit be8d6c9ccc

View File

@ -494,7 +494,7 @@ int test_vec4_simd()
glm::tvec4<float, glm::simd> c(b * a);
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;
}