forked from organicmaps/organicmaps
fixed deadlock bug.
This commit is contained in:
parent
f5c46f6c08
commit
d78bbb9321
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,6 @@ m2::RectI const RenderPolicyMT::OnSize(int w, int h)
|
|||
|
||||
void RenderPolicyMT::BeginFrame()
|
||||
{
|
||||
m_renderQueue.renderState().m_mutex->Lock();
|
||||
}
|
||||
|
||||
void RenderPolicyMT::EndFrame()
|
||||
|
@ -63,6 +62,8 @@ void RenderPolicyMT::DrawFrame(shared_ptr<PaintEvent> const & e,
|
|||
|
||||
e->drawer()->screen()->clear(bgColor());
|
||||
|
||||
m_renderQueue.renderState().m_mutex->Lock();
|
||||
|
||||
if (m_renderQueue.renderState().m_actualTarget.get() != 0)
|
||||
{
|
||||
m2::PointD ptShift = m_renderQueue.renderState().coordSystemShift(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue