summaryrefslogtreecommitdiff
path: root/src/mbgl/tile/geometry_tile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/tile/geometry_tile.cpp')
-rw-r--r--src/mbgl/tile/geometry_tile.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mbgl/tile/geometry_tile.cpp b/src/mbgl/tile/geometry_tile.cpp
index 701e7cf2d6..7d93b61c5b 100644
--- a/src/mbgl/tile/geometry_tile.cpp
+++ b/src/mbgl/tile/geometry_tile.cpp
@@ -282,18 +282,6 @@ void GeometryTile::querySourceFeatures(
}
}
-void GeometryTile::resetCrossTileIDs() {
- for (auto& bucket : symbolBuckets) {
- auto symbolBucket = dynamic_cast<SymbolBucket*>(bucket.second.get());
- if (symbolBucket && symbolBucket->bucketInstanceId) {
- symbolBucket->bucketInstanceId = 0;
- for (auto& symbolInstance : symbolBucket->symbolInstances) {
- symbolInstance.crossTileID = 0;
- }
- }
- }
-}
-
bool GeometryTile::holdForFade() const {
return mode == MapMode::Continuous &&
(fadeState == FadeState::NeedsFirstPlacement || fadeState == FadeState::NeedsSecondPlacement);