remove d3dx stuff

This commit is contained in:
Glenn Maynard
2002-11-15 08:07:26 +00:00
parent 46b6e64bbe
commit 9169da5b9d
2 changed files with 0 additions and 13 deletions
-11
View File
@@ -13,7 +13,6 @@
#include "RageMath.h"
#include "RageTypes.h"
#include "D3DX8Math.h"
#ifdef _DEBUG
#pragma comment(lib, "plib-1.6.0/sg_d.lib")
@@ -99,13 +98,3 @@ void RageMatrixOrthoOffCenterLH( RageMatrix* pOut, float l, float r, float b, fl
pOut->m[3][1] = -(t+b)/(t-b);
pOut->m[3][2] = -(zf+zn)/(zn-zf);
}
void RageMatrixLookAtLH( RageMatrix* pOut, const RageVector3* pEye, const RageVector3* pAt, const RageVector3* pUp )
{
D3DXMatrixLookAtLH( (D3DXMATRIX*)pOut, (const D3DXVECTOR3*)pEye, (const D3DXVECTOR3*)pAt, (const D3DXVECTOR3*)pUp );
}
void RageMatrixPerspectiveFovLH( RageMatrix* pOut, float fovy, float Aspect, float zn, float zf )
{
D3DXMatrixPerspectiveFovLH( (D3DXMATRIX*)pOut, fovy, Aspect, zn, zf );
}
-2
View File
@@ -27,7 +27,5 @@ void RageMatrixRotationX( RageMatrix* pOut, float fTheta );
void RageMatrixRotationY( RageMatrix* pOut, float fTheta );
void RageMatrixRotationZ( RageMatrix* pOut, float fTheta );
void RageMatrixOrthoOffCenterLH( RageMatrix* pOut, float l, float r, float b, float t, float zn, float zf );
void RageMatrixLookAtLH( RageMatrix* pOut, const RageVector3* pEye, const RageVector3* pAt, const RageVector3* pUp );
void RageMatrixPerspectiveFovLH( RageMatrix* pOut, float fovy, float Aspect, float zn, float zf );
#endif