thug/Code/Gfx/NGC/p_NxViewport.h

32 lines
707 B
C
Raw Permalink Normal View History

2016-02-13 21:39:12 +00:00
///////////////////////////////////////////////////////////////////////////////
// p_NxViewport.h
#ifndef __GFX_P_NX_VIEWPORT_H__
#define __GFX_P_NX_VIEWPORT_H__
#include "Gfx/NxViewport.h"
namespace Nx
{
/////////////////////////////////////////////////////////////////////////////////////
// Private classes
//
// Machine specific implementation of the CViewport
class CNgcViewport : public CViewport
{
public:
CNgcViewport();
CNgcViewport(const Mth::Rect* rect, Gfx::Camera* cam = NULL);
virtual ~CNgcViewport();
private: // It's all private, as it is machine specific
//virtual void plat_initialize();
};
} // Namespace Nx
#endif