Home
last modified time | relevance | path

Searched refs:activeBounds (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.cpp137 std::vector<TileSpan> scan_row(uint32_t y, Bounds& activeBounds) { in scan_row() argument
139 tile_range.reserve(activeBounds.size()); in scan_row()
141 for(Bound& b: activeBounds) { in scan_row()
167 auto bound = activeBounds.begin(); in scan_row()
168 while (bound != activeBounds.end()) { in scan_row()
171 bound = activeBounds.erase(bound); in scan_row()
297 if (activeBounds.size() == 0 && currentBounds->first > tileY) { in nextRow()
303 std::back_inserter(activeBounds)); in nextRow()
308 auto xps = util::scan_row(tileY, activeBounds); in nextRow()
H A Dtile_cover_impl.hpp98 Bounds activeBounds; member in mbgl::util::TileCover::Impl