mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 21:45:02 +00:00
Fixed build
This commit is contained in:
parent
1d9a8028e4
commit
f82d23949a
1 changed files with 2 additions and 1 deletions
|
@ -45,6 +45,8 @@ template <typename matType>
|
|||
static int test_inverse()
|
||||
{
|
||||
typedef typename matType::value_type value_type;
|
||||
|
||||
value_type const Epsilon = 0.001f;
|
||||
|
||||
int Error = 0;
|
||||
|
||||
|
@ -57,7 +59,6 @@ static int test_inverse()
|
|||
matType const Inverse = Identity / Matrix;
|
||||
matType const Result = Matrix * Inverse;
|
||||
|
||||
value_type const Epsilon(0.001);
|
||||
Error += glm::all(glm::equal(Identity, Result, Epsilon)) ? 0 : 1;
|
||||
|
||||
return Error;
|
||||
|
|
Loading…
Add table
Reference in a new issue