Removed floor_log2, comment that isnan and isinf are not working on MinGW
This commit is contained in:
@@ -371,7 +371,7 @@ int test_isnan()
|
||||
Error += true == glm::any(glm::isnan(glm::vec3(0.0f/Zero_f))) ? 0 : 1;
|
||||
Error += true == glm::any(glm::isnan(glm::vec4(0.0f/Zero_f))) ? 0 : 1;
|
||||
}
|
||||
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#include <glm/gtc/epsilon.hpp>
|
||||
#include <glm/gtx/integer.hpp>
|
||||
#include <cstdio>
|
||||
|
||||
/*
|
||||
int test_floor_log2()
|
||||
{
|
||||
int Error = 0;
|
||||
@@ -27,7 +27,7 @@ int test_floor_log2()
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
*/
|
||||
int test_log2()
|
||||
{
|
||||
int Error = 0;
|
||||
@@ -65,7 +65,7 @@ int main()
|
||||
int Error = 0;
|
||||
|
||||
Error += test_nlz();
|
||||
Error += test_floor_log2();
|
||||
// Error += test_floor_log2();
|
||||
Error += test_log2();
|
||||
|
||||
return Error;
|
||||
|
||||
Reference in New Issue
Block a user