diff --git a/android/jni/com/mapswithme/platform/Platform.cpp b/android/jni/com/mapswithme/platform/Platform.cpp index 5a1c21a220..08c3c4cb78 100644 --- a/android/jni/com/mapswithme/platform/Platform.cpp +++ b/android/jni/com/mapswithme/platform/Platform.cpp @@ -34,35 +34,8 @@ public: /// calculating how much tiles we need for the screen of such size - m_maxTilesCount = 0; - m_preCachingDepth = 3; - /// calculating for non-rotated screen - - for (unsigned i = 0; i < m_preCachingDepth; ++i) - { -// LOG(LINFO, ("calculating", i, "level")); - /// minimum size of tile on the screen - float minTileSize = floor((m_tileSize << i) / 1.05 / 2.0) - 1; -// LOG(LINFO, ("minTileSize:", minTileSize)); - int tilesOnXSide = ceil(screenWidth / minTileSize) + 1; -// LOG(LINFO, ("tilesOnXSide:", tilesOnXSide)); - int tilesOnYSide = ceil(screenHeight / minTileSize) + 1; -// LOG(LINFO, ("tilesOnYSide:", tilesOnYSide)); - /// tiles in the single screen - int singleScreenTilesCount = tilesOnXSide * tilesOnYSide; -// LOG(LINFO, ("singleScreenTilesCount:", singleScreenTilesCount)); - int curLevelTilesCount = singleScreenTilesCount * 2; -// LOG(LINFO, ("curLevelTilesCount:", curLevelTilesCount)); - m_maxTilesCount += curLevelTilesCount; -// LOG(LINFO, ("on", i, "depth we need", curLevelTilesCount, "tiles")); - } - - LOG(LINFO, ("minimum amount of tiles needed is", m_maxTilesCount)); - - m_maxTilesCount = max(static_cast(120 * k), m_maxTilesCount); - switch (densityDpi) { case 120: @@ -104,11 +77,6 @@ string Platform::SkinName() const return m_impl->m_skinName; } -int Platform::MaxTilesCount() const -{ - return m_impl->m_maxTilesCount; -} - int Platform::TileSize() const { return m_impl->m_tileSize; diff --git a/platform/platform.hpp b/platform/platform.hpp index 47ba81024f..7cb1be9269 100644 --- a/platform/platform.hpp +++ b/platform/platform.hpp @@ -117,8 +117,6 @@ public: int TileSize() const; - int MaxTilesCount() const; - int VideoMemoryLimit() const; int PreCachingDepth() const; diff --git a/platform/platform_android.cpp b/platform/platform_android.cpp index 5b0fa3e31e..ffe505bea9 100644 --- a/platform/platform_android.cpp +++ b/platform/platform_android.cpp @@ -122,10 +122,7 @@ int Platform::ScaleEtalonSize() const return 256; } -int Platform::MaxTilesCount() const -{ - return 120; -}*/ +*/ int Platform::VideoMemoryLimit() const { diff --git a/platform/platform_ios.mm b/platform/platform_ios.mm index 75d5076525..40f2374aed 100644 --- a/platform/platform_ios.mm +++ b/platform/platform_ios.mm @@ -191,11 +191,6 @@ int Platform::VideoMemoryLimit() const return m_impl->m_videoMemoryLimit; } -int Platform::MaxTilesCount() const -{ - return 60; -} - int Platform::PreCachingDepth() const { return 2; diff --git a/platform/platform_qt.cpp b/platform/platform_qt.cpp index bddad826a1..02799bcfd0 100644 --- a/platform/platform_qt.cpp +++ b/platform/platform_qt.cpp @@ -69,11 +69,6 @@ void Platform::GetFontNames(FilesList & res) const CHECK(!res.empty(), ("Can't find any valid font in", ResourcesDir(), WritableDir())); } -int Platform::MaxTilesCount() const -{ - return 200; -} - int Platform::PreCachingDepth() const { return 5;