Fixed Matrix4.CreateOrthographicOffCenter (M44 should be 1).
This commit is contained in:
parent
da7c1c3a4d
commit
70f735d2a6
1 changed files with 1 additions and 0 deletions
|
@ -382,6 +382,7 @@ namespace OpenTK.Math
|
|||
result.M41 = -(right + left) * invRL;
|
||||
result.M42 = -(top + bottom) * invTB;
|
||||
result.M43 = -(zFar + zNear) * invFN;
|
||||
result.M44 = 1;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue