diff --git a/base/timer.cpp b/base/timer.cpp index 6962cd9c27..52feb2979c 100644 --- a/base/timer.cpp +++ b/base/timer.cpp @@ -144,4 +144,9 @@ uint64_t HighResTimer::ElapsedNano() const return duration_cast(high_resolution_clock::now() - m_start).count(); } +double HighResTimer::ElapsedSeconds() const +{ + return duration_cast>(high_resolution_clock::now() - m_start).count(); +} + } diff --git a/base/timer.hpp b/base/timer.hpp index 8b65e31a1c..a82f7245fc 100644 --- a/base/timer.hpp +++ b/base/timer.hpp @@ -67,6 +67,7 @@ public: void Reset(); uint64_t ElapsedNano() const; + double ElapsedSeconds() const; }; } diff --git a/drape_frontend/frontend_renderer.cpp b/drape_frontend/frontend_renderer.cpp index 9a4b34787d..b30df38e6c 100755 --- a/drape_frontend/frontend_renderer.cpp +++ b/drape_frontend/frontend_renderer.cpp @@ -449,22 +449,24 @@ void FrontendRenderer::Routine::Do() GLFunctions::glCullFace(gl_const::GLBack); GLFunctions::glEnable(gl_const::GLCullFace); - my::Timer timer; + my::HighResTimer timer; //double processingTime = InitAvarageTimePerMessage; // By init we think that one message processed by 1ms timer.Reset(); + bool isInactiveLastFrame = false; while (!IsCancelled()) { context->setDefaultFramebuffer(); m_renderer.m_textureManager->UpdateDynamicTextures(); m_renderer.RenderScene(); bool const viewChanged = m_renderer.UpdateScene(); - context->present(); + bool const isInactiveCurrentFrame = (!viewChanged && m_renderer.IsQueueEmpty()); - if (!viewChanged && m_renderer.IsQueueEmpty()) + if (isInactiveLastFrame && isInactiveCurrentFrame) { // process a message or wait for a message m_renderer.ProcessSingleMessage(); + isInactiveLastFrame = false; } else { @@ -481,8 +483,10 @@ void FrontendRenderer::Routine::Do() } //processingTime = (timer.ElapsedSeconds() - processingTime) / messageCount; + isInactiveLastFrame = isInactiveCurrentFrame; } + context->present(); timer.Reset(); m_renderer.CheckRenderingEnabled();