mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
FPSCounter: Add "Log render time to file" feature.
Allows for a more accurate performance measurement.
This commit is contained in:
@ -58,6 +58,7 @@ void VideoConfig::Load(const std::string& ini_file)
|
||||
settings->Get("SafeTextureCacheColorSamples", &iSafeTextureCache_ColorSamples,128);
|
||||
settings->Get("ShowFPS", &bShowFPS, false);
|
||||
settings->Get("LogFPSToFile", &bLogFPSToFile, false);
|
||||
settings->Get("LogRenderTimeToFile", &bLogRenderTimeToFile, false);
|
||||
settings->Get("ShowInputDisplay", &bShowInputDisplay, false);
|
||||
settings->Get("OverlayStats", &bOverlayStats, false);
|
||||
settings->Get("OverlayProjStats", &bOverlayProjStats, false);
|
||||
@ -230,6 +231,7 @@ void VideoConfig::Save(const std::string& ini_file)
|
||||
settings->Set("SafeTextureCacheColorSamples", iSafeTextureCache_ColorSamples);
|
||||
settings->Set("ShowFPS", bShowFPS);
|
||||
settings->Set("LogFPSToFile", bLogFPSToFile);
|
||||
settings->Set("LogRenderTimeToFile", bLogRenderTimeToFile);
|
||||
settings->Set("ShowInputDisplay", bShowInputDisplay);
|
||||
settings->Set("OverlayStats", bOverlayStats);
|
||||
settings->Set("OverlayProjStats", bOverlayProjStats);
|
||||
|
Reference in New Issue
Block a user