Initial build with half types removed
This commit is contained in:
@@ -14,10 +14,6 @@ int test_epsilon()
|
||||
{
|
||||
int Error(0);
|
||||
|
||||
{
|
||||
glm::half Test = glm::epsilon<glm::half>();
|
||||
}
|
||||
|
||||
{
|
||||
float Test = glm::epsilon<float>();
|
||||
}
|
||||
@@ -33,9 +29,10 @@ int main()
|
||||
{
|
||||
int Error(0);
|
||||
|
||||
float MinHalf = 0.0f;
|
||||
while (glm::half(MinHalf) == glm::half(0.0f))
|
||||
MinHalf += std::numeric_limits<float>::epsilon();
|
||||
|
||||
//float MinHalf = 0.0f;
|
||||
//while (glm::half(MinHalf) == glm::half(0.0f))
|
||||
// MinHalf += std::numeric_limits<float>::epsilon();
|
||||
Error += test_epsilon();
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user