mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// p_NxImposter.cpp
|
|
|
|
#include "gfx/ngc/p_NxGeom.h"
|
|
#include "gfx/ngc/p_NxImposter.h"
|
|
|
|
namespace Nx
|
|
{
|
|
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
CImposterGroup* CImposterManager::plat_create_imposter_group( void )
|
|
{
|
|
return new CNgcImposterGroup;
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
void CImposterManager::plat_pre_render_imposters( void )
|
|
{
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
void CImposterManager::plat_post_render_imposters( void )
|
|
{
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
// Private classes
|
|
//
|
|
// Here's a machine specific implementation of the CImposterGroup
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
CNgcImposterGroup::CNgcImposterGroup()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
CNgcImposterGroup::~CNgcImposterGroup()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
} // Namespace Nx
|
|
|
|
|