Compile when not GLX

This commit is contained in:
fredb 2009-07-06 22:58:09 +00:00 committed by Tim Moore
parent eb06a90109
commit a05e063949

View File

@ -2780,7 +2780,6 @@ bool RenderTexture::_ReleaseBoundBuffers()
* @fn RenderTexture::_MakeCurrent()
* @brief Makes the RenderTexture's context current
*/
static GLXContext last_hGLContext = 0;
bool RenderTexture::_MakeCurrent()
{
#ifdef _WIN32
@ -2805,11 +2804,6 @@ bool RenderTexture::_MakeCurrent()
return false;
}
#endif
if ( last_hGLContext != _hGLContext ) {
last_hGLContext = _hGLContext;
dbg_printf( "_MakeCurrent: glXMakeCurrent set to [%p] SUCCESS! returning true\n", _hGLContext );
}
return true;
}