summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2014-11-21 15:44:15 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2014-11-26 15:13:13 -0800
commita5fe8ec3dc138003e16bd39e15af899d78371d77 (patch)
treeb7d4b7bb22f4ebca8f89161deba993cf109c0b00 /src
parent655ee501e749f8be0acb1baa0fa9c05f3993930a (diff)
downloadqtlocation-mapboxgl-a5fe8ec3dc138003e16bd39e15af899d78371d77.tar.gz
Eliminate Map::getGlyphAtlas()
Diffstat (limited to 'src')
-rw-r--r--src/map/map.cpp2
-rw-r--r--src/map/source.cpp12
-rw-r--r--src/map/vector_tile_data.cpp7
3 files changed, 11 insertions, 10 deletions
diff --git a/src/map/map.cpp b/src/map/map.cpp
index 4ed1b6465d..22d0467336 100644
--- a/src/map/map.cpp
+++ b/src/map/map.cpp
@@ -642,7 +642,7 @@ void Map::updateSources(const util::ptr<StyleLayerGroup> &group) {
void Map::updateTiles() {
for (const util::ptr<StyleSource> &source : getActiveSources()) {
- source->source->update(*this, *fileSource);
+ source->source->update(*this, glyphAtlas, *fileSource);
}
}
diff --git a/src/map/source.cpp b/src/map/source.cpp
index 957afd6fd3..16a1116146 100644
--- a/src/map/source.cpp
+++ b/src/map/source.cpp
@@ -61,9 +61,9 @@ void Source::load(Map& map, FileSource& fileSource) {
});
}
-bool Source::update(Map& map, FileSource& fileSource) {
+bool Source::update(Map& map, GlyphAtlas& glyphAtlas, FileSource& fileSource) {
if (loaded && map.getTime() > updated) {
- return updateTiles(map, fileSource);
+ return updateTiles(map, glyphAtlas, fileSource);
} else {
return false;
}
@@ -159,7 +159,7 @@ TileData::State Source::hasTile(const Tile::ID& id) {
return TileData::State::invalid;
}
-TileData::State Source::addTile(Map& map, FileSource& fileSource, const Tile::ID& id) {
+TileData::State Source::addTile(Map& map, GlyphAtlas& glyphAtlas, FileSource& fileSource, const Tile::ID& id) {
const TileData::State state = hasTile(id);
if (state != TileData::State::invalid) {
@@ -187,7 +187,7 @@ TileData::State Source::addTile(Map& map, FileSource& fileSource, const Tile::ID
if (!new_tile.data) {
// If we don't find working tile data, we're just going to load it.
if (info->type == SourceType::Vector) {
- new_tile.data = std::make_shared<VectorTileData>(normalized_id, map, info);
+ new_tile.data = std::make_shared<VectorTileData>(normalized_id, map, glyphAtlas, info);
} else if (info->type == SourceType::Raster) {
new_tile.data = std::make_shared<RasterTileData>(normalized_id, map, info);
} else {
@@ -281,7 +281,7 @@ bool Source::findLoadedParent(const Tile::ID& id, int32_t minCoveringZoom, std::
return false;
}
-bool Source::updateTiles(Map& map, FileSource& fileSource) {
+bool Source::updateTiles(Map& map, GlyphAtlas& glyphAtlas, FileSource& fileSource) {
bool changed = false;
int32_t zoom = std::floor(getZoom(map.getState()));
@@ -298,7 +298,7 @@ bool Source::updateTiles(Map& map, FileSource& fileSource) {
// Add existing child/parent tiles if the actual tile is not yet loaded
for (const Tile::ID& id : required) {
- const TileData::State state = addTile(map, fileSource, id);
+ const TileData::State state = addTile(map, glyphAtlas, fileSource, id);
if (state != TileData::State::parsed) {
// The tile we require is not yet loaded. Try to find a parent or
diff --git a/src/map/vector_tile_data.cpp b/src/map/vector_tile_data.cpp
index 133d23efa8..6d2d25a35b 100644
--- a/src/map/vector_tile_data.cpp
+++ b/src/map/vector_tile_data.cpp
@@ -8,13 +8,14 @@
using namespace mbgl;
-VectorTileData::VectorTileData(Tile::ID const& id_, Map &map_, const util::ptr<SourceInfo> &source_)
+VectorTileData::VectorTileData(Tile::ID const& id_, Map &map_, GlyphAtlas& glyphAtlas_, const util::ptr<SourceInfo> &source_)
: TileData(id_, map_, source_),
+ glyphAtlas(glyphAtlas_),
depth(id.z >= source->max_zoom ? map.getMaxZoom() - id.z : 1) {
}
VectorTileData::~VectorTileData() {
- map.getGlyphAtlas().removeGlyphs(id.to_uint64());
+ glyphAtlas.removeGlyphs(id.to_uint64());
}
@@ -27,7 +28,7 @@ void VectorTileData::parse() {
// Parsing creates state that is encapsulated in TileParser. While parsing,
// the TileParser object writes results into this objects. All other state
// is going to be discarded afterwards.
- TileParser parser(data, *this, map.getStyle(), map.getGlyphAtlas(),
+ TileParser parser(data, *this, map.getStyle(), glyphAtlas,
map.getGlyphStore(), map.getSpriteAtlas(), map.getSprite());
parser.parse();
} catch (const std::exception& ex) {