[drape] timing for rendering

This commit is contained in:
ExMix 2014-01-17 13:40:41 +03:00 committed by Alex Zolotarev
parent 796d3e4632
commit 8204964e57
3 changed files with 61 additions and 2 deletions

View file

@ -6,6 +6,8 @@ DEPENDENCIES = drape base
ROOT_DIR = ..
include($$ROOT_DIR/common.pri)
DEFINES += DRAW_INFO
SOURCES += \
engine_context.cpp \
memory_feature_index.cpp \

View file

@ -6,7 +6,6 @@
#include "../geometry/any_rect2d.hpp"
#include "../std/bind.hpp"
#include "../std/cmath.hpp"
@ -21,6 +20,11 @@ namespace df
, m_width(w)
, m_height(h)
{
#ifdef DRAW_INFO
m_tpf = 0,0;
m_fps = 0.0;
#endif
m_commutator->RegisterThread(ThreadsCommutator::RenderThread, this);
RefreshProjection(w, h);
RefreshModelView(0);
@ -32,6 +36,33 @@ namespace df
StopThread();
}
#ifdef DRAW_INFO
void FrontendRenderer::BeforeDrawFrame()
{
m_frameStartTime = m_timer.ElapsedSeconds();
}
void FrontendRenderer::AfterDrawFrame()
{
m_drawedFrames++;
double elapsed = m_timer.ElapsedSeconds();
m_tpfs.push_back(elapsed - m_frameStartTime);
if (elapsed > 1.0)
{
m_timer.Reset();
m_fps = m_drawedFrames / elapsed;
m_drawedFrames = 0;
m_tpf = accumulate(m_tpfs.begin(), m_tpfs.end(), 0.0) / m_tpfs.size();
LOG(LINFO, ("Average Fps : ", m_fps));
LOG(LINFO, ("Average Tpf : ", m_tpf));
}
}
#endif
void FrontendRenderer::AcceptMessage(RefPointer<Message> message)
{
switch (message->GetType())
@ -112,12 +143,19 @@ namespace df
void FrontendRenderer::RenderScene()
{
#ifdef DRAW_INFO
BeforeDrawFrame();
#endif
GLFunctions::glViewport(0, 0, m_width, m_height);
GLFunctions::glClearColor(0.65f, 0.65f, 0.65f, 1.f);
GLFunctions::glClear();
for_each(m_renderData.begin(), m_renderData.end(), bind(&FrontendRenderer::RenderPartImpl, this, _1));
#ifdef DRAW_INFO
AfterDrawFrame();
#endif
}
void FrontendRenderer::RefreshProjection(int w, int h)

View file

@ -2,6 +2,12 @@
#include "../base/thread.hpp"
#ifdef DRAW_INFO
#include "../base/timer.hpp"
#include "../std/vector.hpp"
#include "../std/numeric.hpp"
#endif
#include "message_acceptor.hpp"
#include "threads_commutator.hpp"
#include "tile_info.hpp"
@ -29,6 +35,19 @@ namespace df
~FrontendRenderer();
#ifdef DRAW_INFO
double m_tpf;
double m_fps;
my::Timer m_timer;
double m_frameStartTime;
vector<double> m_tpfs;
int m_drawedFrames;
void BeforeDrawFrame();
void AfterDrawFrame();
#endif
protected:
virtual void AcceptMessage(RefPointer<Message> message);