summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/FPSCounter.cpp
diff options
context:
space:
mode:
authorDolphin Bot <dolphin-emu-bot@users.noreply.github.com>2014-07-18 12:59:04 +0200
committerDolphin Bot <dolphin-emu-bot@users.noreply.github.com>2014-07-18 12:59:04 +0200
commitb9dc69105d0529c74a4f3c8f3579fa699f2d7bdc (patch)
tree2b2d159bf145e2849fb2a59108e9effb3c12fdfe /Source/Core/VideoCommon/FPSCounter.cpp
parenta180cd60ee9d5bfb0f92084515ee4b28c1a260e6 (diff)
parenteaa7460636f01f7779154259d492568c9d2dee1e (diff)
Merge pull request #595 from Armada651/pref_log
FPSCounter: Flush the logs every second and close them when the renderer is shut down.
Diffstat (limited to 'Source/Core/VideoCommon/FPSCounter.cpp')
-rw-r--r--Source/Core/VideoCommon/FPSCounter.cpp50
1 files changed, 17 insertions, 33 deletions
diff --git a/Source/Core/VideoCommon/FPSCounter.cpp b/Source/Core/VideoCommon/FPSCounter.cpp
index 10bfebb26f..1ce46377c7 100644
--- a/Source/Core/VideoCommon/FPSCounter.cpp
+++ b/Source/Core/VideoCommon/FPSCounter.cpp
@@ -10,54 +10,38 @@
#include "VideoCommon/FPSCounter.h"
#include "VideoCommon/VideoConfig.h"
-namespace FPSCounter
-{
#define FPS_REFRESH_INTERVAL 1000
-static unsigned int s_counter = 0;
-static unsigned int s_fps = 0;
-static unsigned int s_fps_last_counter = 0;
-static Common::Timer s_update_time;
-
-static Common::Timer s_render_time;
-static std::ofstream s_bench_file;
-
-void Initialize()
+FPSCounter::FPSCounter()
{
- s_counter = s_fps_last_counter = 0;
- s_fps = 0;
-
- s_update_time.Update();
- s_render_time.Update();
-
- if (s_bench_file.is_open())
- s_bench_file.close();
+ m_update_time.Update();
+ m_render_time.Update();
}
-static void LogRenderTimeToFile(u64 val)
+void FPSCounter::LogRenderTimeToFile(u64 val)
{
- if (!s_bench_file.is_open())
- s_bench_file.open(File::GetUserPath(D_LOGS_IDX) + "render_time.txt");
+ if (!m_bench_file.is_open())
+ m_bench_file.open(File::GetUserPath(D_LOGS_IDX) + "render_time.txt");
- s_bench_file << val << std::endl;
+ m_bench_file << val << std::endl;
}
-int Update()
+int FPSCounter::Update()
{
- if (s_update_time.GetTimeDifference() >= FPS_REFRESH_INTERVAL)
+ if (m_update_time.GetTimeDifference() >= FPS_REFRESH_INTERVAL)
{
- s_update_time.Update();
- s_fps = s_counter - s_fps_last_counter;
- s_fps_last_counter = s_counter;
+ m_update_time.Update();
+ m_fps = m_counter - m_fps_last_counter;
+ m_fps_last_counter = m_counter;
+ m_bench_file.flush();
}
if (g_ActiveConfig.bLogRenderTimeToFile)
{
- LogRenderTimeToFile(s_render_time.GetTimeDifference());
- s_render_time.Update();
+ LogRenderTimeToFile(m_render_time.GetTimeDifference());
+ m_render_time.Update();
}
- s_counter++;
- return s_fps;
+ m_counter++;
+ return m_fps;
}
-} \ No newline at end of file