continuous rendering while glQueue isn't empty in PartialRenderPolicy.

This commit is contained in:
rachytski 2011-11-07 16:25:12 +04:00 committed by Alex Zolotarev
parent dcc3bc8b93
commit 47ec490ffd
6 changed files with 15 additions and 2 deletions

View file

@ -108,7 +108,7 @@ public:
return m_list.size();
}
bool Empty()
bool Empty() const
{
threads::ConditionGuard g(m_Cond);
return m_list.empty();

View file

@ -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>

View file

@ -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();
}

View file

@ -29,4 +29,6 @@ public:
void DrawFrame(shared_ptr<PaintEvent> const & paintEvent,
ScreenBase const & screenBase);
bool NeedRedraw() const;
};

View file

@ -98,3 +98,8 @@ bool RenderPolicy::DoSupportRotation() const
{
return m_doSupportRotation;
}
bool RenderPolicy::NeedRedraw() const
{
return false;
}

View file

@ -76,4 +76,6 @@ public:
/// @}
bool DoSupportRotation() const;
bool NeedRedraw() const;
};