This commit is contained in:
Glenn Maynard
2004-11-26 19:47:26 +00:00
parent 83da2ee50f
commit 07f7827cec
+1 -1
View File
@@ -628,7 +628,7 @@ RageMatrix RageDisplay::GetOrthoMatrix( float l, float r, float b, float t, floa
RageMatrix RageDisplay::GetFrustumMatrix( float l, float r, float b, float t, float zn, float zf )
{
// glFrustrum
// glFrustum
float A = (r+l) / (r-l);
float B = (t+b) / (t-b);
float C = -1 * (zf+zn) / (zf-zn);