* Matrix4d.cs: M44 should be 1.0 to conform with GL.Ortho(). Fixes issue [#1307]: "GL.Ortho behaves other than combination of OpenTK.Matrix4d.CreateOrthographic and GL.MultMatrix".
This commit is contained in:
parent
9d8cf134c1
commit
1073c8ccac
1 changed files with 1 additions and 0 deletions
|
@ -513,6 +513,7 @@ namespace OpenTK
|
||||||
result.M41 = -(right + left) * invRL;
|
result.M41 = -(right + left) * invRL;
|
||||||
result.M42 = -(top + bottom) * invTB;
|
result.M42 = -(top + bottom) * invTB;
|
||||||
result.M43 = -(zFar + zNear) * invFN;
|
result.M43 = -(zFar + zNear) * invFN;
|
||||||
|
result.M44 = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue