Little changes to the base GraphicsWindow

This commit is contained in:
Renaud Lepage
2005-11-16 04:38:25 +00:00
parent bf7992c859
commit 707c893c41
@@ -13,14 +13,14 @@ static bool g_bHasFocus = true;
static bool g_bLastHasFocus = true; static bool g_bLastHasFocus = true;
static bool m_bWideWindowClass; static bool m_bWideWindowClass;
void GraphicsWindow::SetVideoModeParams( const VideoModeParams &p ) void GraphicsWindow::SetVideoModeParams( const VideoModeParams &params )
{ {
g_CurrentParams = p; g_CurrentParams = params;
} }
VideoModeParams GraphicsWindow::GetParams() void GraphicsWindow::GetParams( VideoModeParams &paramsOut )
{ {
return g_CurrentParams; paramsOut = g_CurrentParams;
} }
void GraphicsWindow::Update() void GraphicsWindow::Update()
@@ -33,7 +33,7 @@ void GraphicsWindow::Update()
} }
} }
void GraphicsWindow::Initialize() { } void GraphicsWindow::Initialize( bool bD3D ) { }
void GraphicsWindow::Shutdown() { } void GraphicsWindow::Shutdown() { }
CString GraphicsWindow::SetScreenMode( const VideoModeParams &p ) { return ""; } CString GraphicsWindow::SetScreenMode( const VideoModeParams &p ) { return ""; }
void GraphicsWindow::CreateGraphicsWindow( const VideoModeParams &p ) { } void GraphicsWindow::CreateGraphicsWindow( const VideoModeParams &p ) { }