mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 21:45:02 +00:00
Fixed tests
This commit is contained in:
parent
0cd665c4ca
commit
dad27d9b37
2 changed files with 2 additions and 2 deletions
|
@ -296,7 +296,7 @@ int main()
|
|||
Error += test_floatBitsToUint();
|
||||
Error += test_mix();
|
||||
Error += test_round();
|
||||
//Error += test_roundEven();
|
||||
Error += test_roundEven();
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@ int test_isNormalized()
|
|||
{
|
||||
int Error(0);
|
||||
|
||||
bool TestA = glm::isNormalized(glm::vec4(1), 0.00001f);
|
||||
bool TestA = glm::isNormalized(glm::vec4(1, 0, 0, 0), 0.00001f);
|
||||
Error += TestA ? 0 : 1;
|
||||
|
||||
return Error;
|
||||
|
|
Loading…
Add table
Reference in a new issue