Home
last modified time | relevance | path

Searched refs:currentBounds (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover_impl.cpp281 currentBounds = boundsMap.begin(); in Impl()
296 if (currentBounds != boundsMap.end()) { in nextRow()
297 if (activeBounds.size() == 0 && currentBounds->first > tileY) { in nextRow()
299 tileY = currentBounds->first; in nextRow()
301 if (tileY == currentBounds->first) { in nextRow()
302 std::move(currentBounds->second.begin(), currentBounds->second.end(), in nextRow()
304 currentBounds++; in nextRow()
H A Dtile_cover_impl.hpp96 BoundsMap::iterator currentBounds; member in mbgl::util::TileCover::Impl