diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2017-06-23 11:36:54 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2017-07-06 05:28:37 -0700 |
commit | 754d2f377aa1b8993ca5365109dfec98475e6de4 (patch) | |
tree | f65af7fc1c4f57e4fc8e945874e0e49a42761f7a /src/mbgl/layout | |
parent | af22fcd181a8253c1dd41941a6d62aea2c8f4e99 (diff) | |
download | qtlocation-mapboxgl-754d2f377aa1b8993ca5365109dfec98475e6de4.tar.gz |
[core] make{Glyph,Image}Atlas only once for any number of symbol layers
Diffstat (limited to 'src/mbgl/layout')
-rw-r--r-- | src/mbgl/layout/symbol_layout.hpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mbgl/layout/symbol_layout.hpp b/src/mbgl/layout/symbol_layout.hpp index 8cdaadff00..4ee52e843f 100644 --- a/src/mbgl/layout/symbol_layout.hpp +++ b/src/mbgl/layout/symbol_layout.hpp @@ -40,13 +40,6 @@ public: bool hasSymbolInstances() const; - enum State { - Pending, // Waiting for the necessary glyphs or icons to be available. - Placed // The final positions have been determined, taking into account prior layers. - }; - - State state = Pending; - std::map<std::string, std::pair<style::IconPaintProperties::PossiblyEvaluated, style::TextPaintProperties::PossiblyEvaluated>> layerPaintProperties; |