Home
last modified time | relevance | path

Searched refs:tileXSpans (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.cpp284 if (tileXSpans.empty()) return; in Impl()
285 tileX = tileXSpans.front().first; in Impl()
320 tileXSpans.emplace(x_min, x_max); in nextRow()
327 tileXSpans.emplace(x_min, x_max); in nextRow()
331 return (!tileXSpans.empty() in hasNext()
332 && tileX < tileXSpans.front().second in hasNext()
342 if (tileX >= tileXSpans.front().second) { in next()
343 tileXSpans.pop(); in next()
344 if (tileXSpans.empty()) { in next()
348 if (!tileXSpans.empty()) { in next()
[all …]
H A Dtile_cover_impl.hpp100 TileSpans tileXSpans; member in mbgl::util::TileCover::Impl