diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-05-20 15:00:07 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-05-21 10:53:40 +0200 |
commit | 238fe86571772da67cc5b3e23012b75904b0f9fb (patch) | |
tree | a865a4e3da84bd9171a394095aeed01c9a2ccdb6 /include/llmr/map | |
parent | 017145f052ad41dfcf932496941fb0bede1a16d0 (diff) | |
download | qtlocation-mapboxgl-238fe86571772da67cc5b3e23012b75904b0f9fb.tar.gz |
partially revert 6136ab6d213c0aa5e6afba632fc42b5999e70615
background: we are doing separate opaque/translucent passes per composite layer
and then we're compositing them in the translucent phase
Diffstat (limited to 'include/llmr/map')
-rw-r--r-- | include/llmr/map/map.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llmr/map/map.hpp b/include/llmr/map/map.hpp index 87d64b0733..a7965500d2 100644 --- a/include/llmr/map/map.hpp +++ b/include/llmr/map/map.hpp @@ -120,7 +120,7 @@ private: // Unconditionally performs a render with the current map state. void render(); - void renderLayers(const std::vector<LayerDescription>& layers, RenderPass pass); + void renderLayers(const std::vector<LayerDescription>& layers); void renderLayer(const LayerDescription& layer_desc, RenderPass pass); private: @@ -151,8 +151,8 @@ private: bool debug = false; time animationTime = 0; - float strata_thickness = 0.0f; - int strata = 0; + + int indent = 0; private: bool async = false; |