forked from organicmaps/organicmaps
[android] added "empty model" message to PartialRenderPolicy.
This commit is contained in:
parent
08d5dafd28
commit
abbb5027d5
2 changed files with 6 additions and 0 deletions
|
@ -292,6 +292,11 @@ bool PartialRenderPolicy::NeedRedraw() const
|
|||
return RenderPolicy::NeedRedraw() || !m_glQueue.Empty();
|
||||
}
|
||||
|
||||
bool PartialRenderPolicy::IsEmptyModel() const
|
||||
{
|
||||
return m_renderQueue->renderState().m_isEmptyModelActual;
|
||||
}
|
||||
|
||||
m2::RectI const PartialRenderPolicy::OnSize(int w, int h)
|
||||
{
|
||||
RenderPolicy::OnSize(w, h);
|
||||
|
|
|
@ -50,6 +50,7 @@ public:
|
|||
m2::RectI const OnSize(int w, int h);
|
||||
|
||||
bool NeedRedraw() const;
|
||||
bool IsEmptyModel() const;
|
||||
|
||||
void StartDrag();
|
||||
void StopDrag();
|
||||
|
|
Loading…
Add table
Reference in a new issue