diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-07-31 18:14:26 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-07-31 18:14:26 +0200 |
commit | 75c079adb16a24cbd8b8111993a67313fd52718a (patch) | |
tree | 400207782ad718fa605414a6132dcfa20a09415d /include/mbgl/renderer | |
parent | fa3a41136ca6345f34b53a1f211926cc1bd8649c (diff) | |
download | qtlocation-mapboxgl-75c079adb16a24cbd8b8111993a67313fd52718a.tar.gz |
move sprite to a use future loading
Diffstat (limited to 'include/mbgl/renderer')
-rw-r--r-- | include/mbgl/renderer/symbol_bucket.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/mbgl/renderer/symbol_bucket.hpp b/include/mbgl/renderer/symbol_bucket.hpp index a073856d2b..b1917a93b2 100644 --- a/include/mbgl/renderer/symbol_bucket.hpp +++ b/include/mbgl/renderer/symbol_bucket.hpp @@ -24,6 +24,7 @@ class IconShader; class DotShader; class Placement; class SpriteAtlas; +class Sprite; class GlyphAtlas; class GlyphStore; class FontStack; @@ -44,8 +45,8 @@ public: virtual bool hasIconData() const; void addFeatures(const VectorTileLayer &layer, const FilterExpression &filter, - const Tile::ID &id, SpriteAtlas &spriteAtlas, GlyphAtlas &glyphAtlas, - GlyphStore &glyphStore); + const Tile::ID &id, SpriteAtlas &spriteAtlas, Sprite &sprite, + GlyphAtlas &glyphAtlas, GlyphStore &glyphStore); void addGlyphs(const PlacedGlyphs &glyphs, float placementZoom, PlacementRange placementRange, float zoom); |