Blame SOURCES/glm-0.9.6.1-ulp.patch

cd8460
diff -ru glm/glm/gtc/ulp.inl glm-ulp/glm/gtc/ulp.inl
cd8460
--- glm/glm/gtc/ulp.inl	2014-12-09 21:13:54.000000000 +0200
cd8460
+++ glm-ulp/glm/gtc/ulp.inl	2015-01-06 16:29:47.497932633 +0200
cd8460
@@ -316,7 +316,7 @@
cd8460
 		if(x < y)
cd8460
 		{
cd8460
 			T temp = x;
cd8460
-			while(temp != y)// && ulp < std::numeric_limits<std::size_t>::max())
cd8460
+			while(temp < y)// && ulp < std::numeric_limits<std::size_t>::max())
cd8460
 			{
cd8460
 				++ulp;
cd8460
 				temp = next_float(temp);
cd8460
@@ -325,7 +325,7 @@
cd8460
 		else if(y < x)
cd8460
 		{
cd8460
 			T temp = y;
cd8460
-			while(temp != x)// && ulp < std::numeric_limits<std::size_t>::max())
cd8460
+			while(temp < x)// && ulp < std::numeric_limits<std::size_t>::max())
cd8460
 			{
cd8460
 				++ulp;
cd8460
 				temp = next_float(temp);