Fixed build
This commit is contained in:
@@ -46,6 +46,8 @@ static int test_inverse()
|
|||||||
{
|
{
|
||||||
typedef typename matType::value_type value_type;
|
typedef typename matType::value_type value_type;
|
||||||
|
|
||||||
|
value_type const Epsilon = 0.001f;
|
||||||
|
|
||||||
int Error = 0;
|
int Error = 0;
|
||||||
|
|
||||||
matType const Identity(1.0f);
|
matType const Identity(1.0f);
|
||||||
@@ -57,7 +59,6 @@ static int test_inverse()
|
|||||||
matType const Inverse = Identity / Matrix;
|
matType const Inverse = Identity / Matrix;
|
||||||
matType const Result = Matrix * Inverse;
|
matType const Result = Matrix * Inverse;
|
||||||
|
|
||||||
value_type const Epsilon(0.001);
|
|
||||||
Error += glm::all(glm::equal(Identity, Result, Epsilon)) ? 0 : 1;
|
Error += glm::all(glm::equal(Identity, Result, Epsilon)) ? 0 : 1;
|
||||||
|
|
||||||
return Error;
|
return Error;
|
||||||
|
|||||||
Reference in New Issue
Block a user