GetVideoModeParams -> GetActualVideoModeParams

add GetApiDescription
This commit is contained in:
Chris Danford
2005-11-11 21:16:48 +00:00
parent 4d8ab8a6f6
commit 182232344f
15 changed files with 45 additions and 36 deletions
@@ -217,7 +217,7 @@ void LowLevelWindow_SDL::Update()
break;
if( event.active.gain && // app regaining focus
!DISPLAY->GetVideoModeParams().windowed ) // full screen
!DISPLAY->GetActualVideoModeParams().windowed ) // full screen
{
// need to reacquire an OGL context
/* This hasn't been done in a long time, since HandleSDLEvents was
@@ -225,7 +225,7 @@ void LowLevelWindow_SDL::Update()
* it resulted in input not being regained and textures being erased,
* so I left it disabled; but this might be needed on some cards (with
* the above fixed) ... */
// DISPLAY->SetVideoMode( DISPLAY->GetVideoModeParams() );
// DISPLAY->SetVideoMode( DISPLAY->GetActualVideoModeParams() );
}
{