mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
29 lines
896 B
C++
29 lines
896 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// p_NxViewMan.cpp - Xbox platform specific interface to CViewportManager
|
|
|
|
#include <core/defines.h>
|
|
|
|
#include "gfx/NxViewMan.h"
|
|
#include "gfx/Xbox/p_NxViewport.h"
|
|
|
|
namespace Nx
|
|
{
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
/////////////////////////////////////////////////////////////////////////////////////
|
|
// Functions
|
|
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
CViewport *CViewportManager::s_plat_create_viewport( const Mth::Rect *rect, Gfx::Camera *cam )
|
|
{
|
|
return new CXboxViewport( rect, cam );
|
|
}
|
|
|
|
}
|
|
|