Added test files for all GTX extensions

This commit is contained in:
Christophe Riccio
2013-10-27 18:25:03 +00:00
parent 6bb9bdc8ce
commit 2e72af3f6d
48 changed files with 1062 additions and 1283 deletions

View File

@@ -284,7 +284,7 @@ namespace glm
if(x < y)
{
T temp = x;
while(temp != y && ulp < std::numeric_limits<std::size_t>::max())
while(temp != y)// && ulp < std::numeric_limits<std::size_t>::max())
{
++ulp;
temp = next_float(temp);
@@ -293,7 +293,7 @@ namespace glm
else if(y < x)
{
T temp = y;
while(temp != x && ulp < std::numeric_limits<std::size_t>::max())
while(temp != x)// && ulp < std::numeric_limits<std::size_t>::max())
{
++ulp;
temp = next_float(temp);