[Nokia N-Gage] Add define to disable FPS counter by default.

This commit is contained in:
Michael Fitzmayer
2025-06-07 15:40:53 +02:00
parent d9af41b5ac
commit cbc9d662ea

View File

@@ -570,6 +570,7 @@ void CRenderer::Flip()
return;
}
#ifdef SDL_VIDEO_RENDER_NGAGE_FPS
iRenderer->Gc()->UseFont(iFont);
if (iShowFPS && iRenderer->Gc()) {
@@ -594,6 +595,7 @@ void CRenderer::Flip()
iRenderer->Gc()->DrawText(_L(""), TPoint(0, 0));
}
iRenderer->Gc()->DiscardFont();
#endif // SDL_VIDEO_RENDER_NGAGE_FPS
iRenderer->Flip(iDirectScreen);
// Keep the backlight on.
@@ -627,6 +629,7 @@ void CRenderer::SetClipRect(TInt aX, TInt aY, TInt aWidth, TInt aHeight)
}
}
#ifdef SDL_VIDEO_RENDER_NGAGE_FPS
void CRenderer::UpdateFPS()
{
static TTime lastTime;
@@ -648,6 +651,7 @@ void CRenderer::UpdateFPS()
lastTime = currentTime;
}
}
#endif
void CRenderer::SuspendScreenSaver(TBool aSuspend)
{
@@ -742,6 +746,7 @@ void CRenderer::HandleEvent(const TWsEvent &aWsEvent)
timestamp = SDL_GetPerformanceCounter();
SDL_SendKeyboardKey(timestamp, 1, aWsEvent.Key()->iCode, ConvertScancode(aWsEvent.Key()->iScanCode), true);
#ifdef SDL_VIDEO_RENDER_NGAGE_FPS
if (aWsEvent.Key()->iScanCode == EStdKeyHash) {
if (iShowFPS) {
iShowFPS = EFalse;
@@ -749,6 +754,7 @@ void CRenderer::HandleEvent(const TWsEvent &aWsEvent)
iShowFPS = ETrue;
}
}
#endif
break;
case EEventKeyUp: /* Key events */