forked from organicmaps/organicmaps
continuous rendering while glQueue isn't empty in PartialRenderPolicy.
This commit is contained in:
parent
dcc3bc8b93
commit
47ec490ffd
6 changed files with 15 additions and 2 deletions
|
@ -108,7 +108,7 @@ public:
|
|||
return m_list.size();
|
||||
}
|
||||
|
||||
bool Empty()
|
||||
bool Empty() const
|
||||
{
|
||||
threads::ConditionGuard g(m_Cond);
|
||||
return m_list.empty();
|
||||
|
|
|
@ -244,7 +244,7 @@ void Framework<TModel>::SetMaxWorldRect()
|
|||
template <typename TModel>
|
||||
bool Framework<TModel>::NeedRedraw() const
|
||||
{
|
||||
return m_windowHandle->needRedraw();
|
||||
return m_windowHandle->needRedraw() || m_renderPolicy->NeedRedraw();
|
||||
}
|
||||
|
||||
template <typename TModel>
|
||||
|
|
|
@ -88,4 +88,8 @@ void PartialRenderPolicy::DrawFrame(shared_ptr<PaintEvent> const & paintEvent,
|
|||
RenderPolicyMT::DrawFrame(paintEvent, screenBase);
|
||||
|
||||
// OGLCHECK(glFinish());
|
||||
|
||||
bool PartialRenderPolicy::NeedRedraw() const
|
||||
{
|
||||
return !m_glQueue.Empty();
|
||||
}
|
||||
|
|
|
@ -29,4 +29,6 @@ public:
|
|||
|
||||
void DrawFrame(shared_ptr<PaintEvent> const & paintEvent,
|
||||
ScreenBase const & screenBase);
|
||||
|
||||
bool NeedRedraw() const;
|
||||
};
|
||||
|
|
|
@ -98,3 +98,8 @@ bool RenderPolicy::DoSupportRotation() const
|
|||
{
|
||||
return m_doSupportRotation;
|
||||
}
|
||||
|
||||
bool RenderPolicy::NeedRedraw() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -76,4 +76,6 @@ public:
|
|||
/// @}
|
||||
|
||||
bool DoSupportRotation() const;
|
||||
|
||||
bool NeedRedraw() const;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue