summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeith Bade <leith@mapbox.com>2015-01-23 11:11:04 +1100
committerLeith Bade <leith@mapbox.com>2015-01-23 11:11:04 +1100
commit42d1972732a2f8cc59cf3c3041944b7831b4c97b (patch)
tree0b28f7476f805f55b67a621552c73b15dc7a358e /include
parent5234cd9f79d7aa1ac7843693f1f28f9d358edf2c (diff)
parent0c2ffc251c519af76a0ed6dd1925621ebe393e7b (diff)
downloadqtlocation-mapboxgl-42d1972732a2f8cc59cf3c3041944b7831b4c97b.tar.gz
Merge branch 'master' of github.com:mapbox/mapbox-gl-native into android-mason
Conflicts: src/mbgl/renderer/painter_prerender.cpp src/mbgl/renderer/prerendered_texture.cpp src/mbgl/renderer/prerendered_texture.hpp
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/map/map.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mbgl/map/map.hpp b/include/mbgl/map/map.hpp
index 05a766e773..21fc8f301b 100644
--- a/include/mbgl/map/map.hpp
+++ b/include/mbgl/map/map.hpp
@@ -32,6 +32,7 @@ class FileSource;
class View;
class GlyphAtlas;
class SpriteAtlas;
+class LineAtlas;
class Map : private util::noncopyable {
public:
@@ -205,6 +206,7 @@ private:
util::ptr<GlyphStore> glyphStore;
const std::unique_ptr<SpriteAtlas> spriteAtlas;
util::ptr<Sprite> sprite;
+ const std::unique_ptr<LineAtlas> lineAtlas;
util::ptr<TexturePool> texturePool;
const std::unique_ptr<Painter> painter;