summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/OGL/Render.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/VideoBackends/OGL/Render.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/VideoBackends/OGL/Render.cpp')
-rw-r--r--Source/Core/VideoBackends/OGL/Render.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/Core/VideoBackends/OGL/Render.cpp b/Source/Core/VideoBackends/OGL/Render.cpp
index 5fb486c6d9..c9b373918b 100644
--- a/Source/Core/VideoBackends/OGL/Render.cpp
+++ b/Source/Core/VideoBackends/OGL/Render.cpp
@@ -85,7 +85,6 @@ VideoConfig g_ogl_config;
// Declarations and definitions
// ----------------------------
-static int s_fps = 0;
static GLuint s_ShowEFBCopyRegions_VBO = 0;
static GLuint s_ShowEFBCopyRegions_VAO = 0;
static SHADER s_ShowEFBCopyRegions;
@@ -339,10 +338,8 @@ Renderer::Renderer()
OSDInternalW = 0;
OSDInternalH = 0;
- s_fps=0;
s_ShowEFBCopyRegions_VBO = 0;
s_blendMode = 0;
- FPSCounter::Initialize();
bool bSuccess = true;
@@ -688,7 +685,7 @@ void Renderer::DrawDebugInfo()
std::string debug_info;
if (g_ActiveConfig.bShowFPS)
- debug_info += StringFromFormat("FPS: %d\n", s_fps);
+ debug_info += StringFromFormat("FPS: %d\n", m_fps_counter.m_fps);
if (SConfig::GetInstance().m_ShowLag)
debug_info += StringFromFormat("Lag: %" PRIu64 "\n", Movie::g_currentLagCount);
@@ -1585,8 +1582,6 @@ void Renderer::SwapImpl(u32 xfbAddr, u32 fbWidth, u32 fbHeight,const EFBRectangl
}
}
- if (XFBWrited)
- s_fps = FPSCounter::Update();
// ---------------------------------------------------------------------
if (!DriverDetails::HasBug(DriverDetails::BUG_BROKENSWAP))
{