Example #1
0
inline void Camera::GetRowMajorProjectionMatrix44( float *pDest ) const
{
	Matrix44 src;
	GetProjectionMatrix( src );
	src.GetRowMajorMatrix44( pDest );
}