Fixed compilation in debug mode

This commit is contained in:
Lynix
2012-05-04 16:06:18 +02:00
parent a215920818
commit 8c420b48c3
8 changed files with 54 additions and 19 deletions

View File

@@ -209,11 +209,6 @@ void NzContextImpl::Destroy()
DestroyWindow(m_window);
}
bool NzContextImpl::IsActive() const
{
return wglGetCurrentContext() == m_context;
}
void NzContextImpl::SwapBuffers()
{
::SwapBuffers(m_deviceContext);

View File

@@ -18,7 +18,6 @@ class NzContextImpl
bool Activate();
bool Create(NzContextParameters& parameters);
void Destroy();
bool IsActive() const;
void SwapBuffers();
static bool Desactivate();