adding only m_tileScale and m_tileScale - 2 tiles to firstClassTiles to improve visual appearance of newly rendered maps.

This commit is contained in:
rachytski 2012-04-20 17:47:23 +04:00 committed by Alex Zolotarev
parent 32f645d732
commit 11e5301312
3 changed files with 6 additions and 3 deletions

View file

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

View file

@ -193,7 +193,7 @@ int Platform::VideoMemoryLimit() const
int Platform::PreCachingDepth() const
{
return 2;
return 3;
}
int Platform::TileSize() const

View file

@ -71,7 +71,7 @@ void Platform::GetFontNames(FilesList & res) const
int Platform::PreCachingDepth() const
{
return 5;
return 3;
}
int Platform::TileSize() const