forked from organicmaps/organicmaps-tmp
empty global rect optimization.
This commit is contained in:
parent
832148406a
commit
5e2eeab724
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ void RenderQueueRoutine::Do()
|
|||
if ((areas[i].SizeX() != 0) && (areas[i].SizeY() != 0))
|
||||
{
|
||||
frameScreen.PtoG(m2::Inflate<double>(m2::RectD(areas[i]), 30 * m_visualScale, 30 * m_visualScale), glbRect);
|
||||
if ((glbRect.SizeX() == 0) || (glbRect.SizeY()))
|
||||
if ((glbRect.SizeX() == 0) || (glbRect.SizeY() == 0))
|
||||
continue;
|
||||
|
||||
m_threadDrawer->screen()->setClipRect(areas[i]);
|
||||
|
|
Loading…
Add table
Reference in a new issue