forked from organicmaps/organicmaps
adding only m_tileScale and m_tileScale - 2 tiles to firstClassTiles to improve visual appearance of newly rendered maps.
This commit is contained in:
parent
32f645d732
commit
11e5301312
3 changed files with 6 additions and 3 deletions
|
@ -267,7 +267,10 @@ void ScreenCoverage::SetScreen(ScreenBase const & screen)
|
|||
if (drawnTiles.count(cr[i]) || !m_screen.GlobalRect().IsIntersect(m2::AnyRectD(cr[i].m_rect)))
|
||||
--childTilesToDraw;
|
||||
|
||||
if (m_tiler.isLeaf(nr) || (childTilesToDraw > 1))
|
||||
// if (m_tiler.isLeaf(nr) || (childTilesToDraw > 1))
|
||||
|
||||
if ((nr.m_tileScale == m_tiler.tileScale() - 2)
|
||||
||(nr.m_tileScale == m_tiler.tileScale() ))
|
||||
firstClassTiles.push_back(nr);
|
||||
else
|
||||
secondClassTiles.push_back(nr);
|
||||
|
|
|
@ -193,7 +193,7 @@ int Platform::VideoMemoryLimit() const
|
|||
|
||||
int Platform::PreCachingDepth() const
|
||||
{
|
||||
return 2;
|
||||
return 3;
|
||||
}
|
||||
|
||||
int Platform::TileSize() const
|
||||
|
|
|
@ -71,7 +71,7 @@ void Platform::GetFontNames(FilesList & res) const
|
|||
|
||||
int Platform::PreCachingDepth() const
|
||||
{
|
||||
return 5;
|
||||
return 3;
|
||||
}
|
||||
|
||||
int Platform::TileSize() const
|
||||
|
|
Loading…
Add table
Reference in a new issue