mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 17:25:39 +00:00
Eliminated additional step for division operations.
This commit is contained in:
parent
0cd47f2c3c
commit
7c298cc43d
|
@ -623,7 +623,7 @@ namespace OpenTK
|
|||
/// <param name="result">Result of the operation.</param>
|
||||
public static void Divide(ref Vector2 vector, float scale, out Vector2 result)
|
||||
{
|
||||
Multiply(ref vector, 1 / scale, out result);
|
||||
result = vector / scale;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -1083,9 +1083,8 @@ namespace OpenTK
|
|||
/// <returns>Result of the division.</returns>
|
||||
public static Vector2 operator /(Vector2 vec, float scale)
|
||||
{
|
||||
float mult = 1.0f / scale;
|
||||
vec.X *= mult;
|
||||
vec.Y *= mult;
|
||||
vec.X /= scale;
|
||||
vec.Y /= scale;
|
||||
return vec;
|
||||
}
|
||||
|
||||
|
|
|
@ -541,7 +541,7 @@ namespace OpenTK
|
|||
/// <param name="result">Result of the operation.</param>
|
||||
public static void Divide(ref Vector2d vector, double scale, out Vector2d result)
|
||||
{
|
||||
Multiply(ref vector, 1 / scale, out result);
|
||||
result = vector / scale;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -945,9 +945,8 @@ namespace OpenTK
|
|||
/// <returns>The result of the operation.</returns>
|
||||
public static Vector2d operator /(Vector2d vec, double f)
|
||||
{
|
||||
double mult = 1.0 / f;
|
||||
vec.X *= mult;
|
||||
vec.Y *= mult;
|
||||
vec.X /= f;
|
||||
vec.Y /= f;
|
||||
return vec;
|
||||
}
|
||||
|
||||
|
|
|
@ -629,7 +629,7 @@ namespace OpenTK
|
|||
/// <param name="result">Result of the operation.</param>
|
||||
public static void Divide(ref Vector3 vector, float scale, out Vector3 result)
|
||||
{
|
||||
Multiply(ref vector, 1 / scale, out result);
|
||||
result = vector / scale;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -1574,10 +1574,9 @@ namespace OpenTK
|
|||
/// <returns>The result of the calculation.</returns>
|
||||
public static Vector3 operator /(Vector3 vec, float scale)
|
||||
{
|
||||
float mult = 1.0f / scale;
|
||||
vec.X *= mult;
|
||||
vec.Y *= mult;
|
||||
vec.Z *= mult;
|
||||
vec.X /= scale;
|
||||
vec.Y /= scale;
|
||||
vec.Z /= scale;
|
||||
return vec;
|
||||
}
|
||||
|
||||
|
|
|
@ -627,7 +627,7 @@ namespace OpenTK
|
|||
/// <param name="result">Result of the operation.</param>
|
||||
public static void Divide(ref Vector3d vector, double scale, out Vector3d result)
|
||||
{
|
||||
Multiply(ref vector, 1 / scale, out result);
|
||||
result = vector / scale;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -1395,10 +1395,9 @@ namespace OpenTK
|
|||
/// <returns>The result of the calculation.</returns>
|
||||
public static Vector3d operator /(Vector3d vec, double scale)
|
||||
{
|
||||
double mult = 1 / scale;
|
||||
vec.X *= mult;
|
||||
vec.Y *= mult;
|
||||
vec.Z *= mult;
|
||||
vec.X /= scale;
|
||||
vec.Y /= scale;
|
||||
vec.Z /= scale;
|
||||
return vec;
|
||||
}
|
||||
|
||||
|
|
|
@ -514,11 +514,10 @@ namespace OpenTK
|
|||
/// <returns>Result of the division</returns>
|
||||
public static Vector4 Div(Vector4 a, float f)
|
||||
{
|
||||
float mult = 1.0f / f;
|
||||
a.X *= mult;
|
||||
a.Y *= mult;
|
||||
a.Z *= mult;
|
||||
a.W *= mult;
|
||||
a.X /= f;
|
||||
a.Y /= f;
|
||||
a.Z /= f;
|
||||
a.W /= f;
|
||||
return a;
|
||||
}
|
||||
|
||||
|
@ -530,11 +529,10 @@ namespace OpenTK
|
|||
/// <param name="result">Result of the division</param>
|
||||
public static void Div(ref Vector4 a, float f, out Vector4 result)
|
||||
{
|
||||
float mult = 1.0f / f;
|
||||
result.X = a.X * mult;
|
||||
result.Y = a.Y * mult;
|
||||
result.Z = a.Z * mult;
|
||||
result.W = a.W * mult;
|
||||
result.X = a.X / f;
|
||||
result.Y = a.Y / f;
|
||||
result.Z = a.Z / f;
|
||||
result.W = a.W / f;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
@ -667,7 +665,7 @@ namespace OpenTK
|
|||
/// <param name="result">Result of the operation.</param>
|
||||
public static void Divide(ref Vector4 vector, float scale, out Vector4 result)
|
||||
{
|
||||
Multiply(ref vector, 1 / scale, out result);
|
||||
result = vector / scale;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -1577,11 +1575,10 @@ namespace OpenTK
|
|||
/// <returns>The result of the calculation.</returns>
|
||||
public static Vector4 operator /(Vector4 vec, float scale)
|
||||
{
|
||||
float mult = 1.0f / scale;
|
||||
vec.X *= mult;
|
||||
vec.Y *= mult;
|
||||
vec.Z *= mult;
|
||||
vec.W *= mult;
|
||||
vec.X /= scale;
|
||||
vec.Y /= scale;
|
||||
vec.Z /= scale;
|
||||
vec.W /= scale;
|
||||
return vec;
|
||||
}
|
||||
|
||||
|
|
|
@ -669,7 +669,7 @@ namespace OpenTK
|
|||
/// <param name="result">Result of the operation.</param>
|
||||
public static void Divide(ref Vector4d vector, double scale, out Vector4d result)
|
||||
{
|
||||
Multiply(ref vector, 1 / scale, out result);
|
||||
result = vector / scale;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -1517,11 +1517,10 @@ namespace OpenTK
|
|||
/// <returns>The result of the calculation.</returns>
|
||||
public static Vector4d operator /(Vector4d vec, double scale)
|
||||
{
|
||||
double mult = 1 / scale;
|
||||
vec.X *= mult;
|
||||
vec.Y *= mult;
|
||||
vec.Z *= mult;
|
||||
vec.W *= mult;
|
||||
vec.X /= scale;
|
||||
vec.Y /= scale;
|
||||
vec.Z /= scale;
|
||||
vec.W /= scale;
|
||||
return vec;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue