Forráskód Böngészése

Merge branch '0.9.2' into 0.9.3

Christophe Riccio 14 éve
szülő
commit
642edcc53a
1 módosított fájl, 4 hozzáadás és 4 törlés
  1. 4 4
      glm/core/func_common.inl

+ 4 - 4
glm/core/func_common.inl

@@ -948,7 +948,7 @@ namespace detail
 	{
 		GLM_STATIC_ASSERT(detail::type<genType>::is_float, "'mix' only accept floating-point inputs");
 
-		return a ? x : y;
+		return a ? y : x;
 	}
 
 	template <typename T>
@@ -969,7 +969,7 @@ namespace detail
 			++i
 		)
 		{
-			result[i] = a[i] ? x[i] : y[i];
+			result[i] = a[i] ? y[i] : x[i];
 		}
 		return result;
 	}
@@ -992,7 +992,7 @@ namespace detail
 			++i
 		)
 		{
-			result[i] = a[i] ? x[i] : y[i];
+			result[i] = a[i] ? y[i] : x[i];
 		}
 		return result;
 	}
@@ -1015,7 +1015,7 @@ namespace detail
 			++i
 		)
 		{
-			result[i] = a[i] ? x[i] : y[i];
+			result[i] = a[i] ? y[i] : x[i];
 		}
 		return result;
 	}