summaryrefslogtreecommitdiff
path: root/src/mbgl/algorithm
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2016-05-25 19:40:17 +0200
committerKonstantin Käfer <mail@kkaefer.com>2016-05-25 21:51:25 +0200
commitc60fd0604aa0c15f92d19b0f58613ed050edea18 (patch)
tree8db7a63ad59ff46abb08005f57d2e92ce941b2bf /src/mbgl/algorithm
parente2bcea90fce8a1e05e517c615d21d845e955f53d (diff)
downloadqtlocation-mapboxgl-c60fd0604aa0c15f92d19b0f58613ed050edea18.tar.gz
[core] TileData::isReady() => TileData::isRenderable()
Diffstat (limited to 'src/mbgl/algorithm')
-rw-r--r--src/mbgl/algorithm/update_renderables_impl.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/algorithm/update_renderables_impl.hpp b/src/mbgl/algorithm/update_renderables_impl.hpp
index 6ec944a85f..0f97801021 100644
--- a/src/mbgl/algorithm/update_renderables_impl.hpp
+++ b/src/mbgl/algorithm/update_renderables_impl.hpp
@@ -17,7 +17,7 @@ bool tryTile(const UnwrappedTileID& renderTileID,
Renderables& renderables) {
if (renderables.find(renderTileID) == renderables.end()) {
const auto it = dataTiles.find(dataTileID);
- if (it == dataTiles.end() || !it->second->isReady()) {
+ if (it == dataTiles.end() || !it->second->isRenderable()) {
return false;
}