mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// p_NxViewport.cpp
|
|
|
|
#include "Gfx/NGC/p_NxViewport.h"
|
|
|
|
namespace Nx
|
|
{
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
// Here's a machine specific implementation of CViewport
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
|
|
CNgcViewport::CNgcViewport()
|
|
{
|
|
}
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
|
|
CNgcViewport::CNgcViewport( const Mth::Rect* rect, Gfx::Camera* cam) :
|
|
CViewport(rect, cam)
|
|
{
|
|
}
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
|
|
CNgcViewport::~CNgcViewport()
|
|
{
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
// Private classes
|
|
//
|
|
|
|
} // Namespace Nx
|
|
|
|
|
|
|