summaryrefslogtreecommitdiff
path: root/include/mbgl/map/vector_tile_data.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/map/vector_tile_data.hpp')
-rw-r--r--include/mbgl/map/vector_tile_data.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mbgl/map/vector_tile_data.hpp b/include/mbgl/map/vector_tile_data.hpp
index 59846fcaae..56ecfb51eb 100644
--- a/include/mbgl/map/vector_tile_data.hpp
+++ b/include/mbgl/map/vector_tile_data.hpp
@@ -24,6 +24,7 @@ class TileParser;
class GlyphAtlas;
class GlyphStore;
class SpriteAtlas;
+class Texturepool;
class VectorTileData : public TileData {
friend class TileParser;
@@ -32,6 +33,7 @@ public:
VectorTileData(Tile::ID const&, Map&,
GlyphAtlas&, GlyphStore&,
SpriteAtlas&,
+ Texturepool&,
const util::ptr<SourceInfo>&);
~VectorTileData();
@@ -57,6 +59,7 @@ protected:
GlyphAtlas& glyphAtlas;
GlyphStore& glyphStore;
SpriteAtlas& spriteAtlas;
+ Texturepool& texturepool;
public:
const float depth;