Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorExMix <rahuba.youri@mapswithme.com>2014-09-29 17:36:41 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:28:56 +0300
commit4684878489a7919c31f1627d3b670125242f1b0f (patch)
tree076885daad9dec510be95eafa8a0bd7431972c3b /graphics
parent78bf5cec4076d17ad7bb5366471c251925d64c07 (diff)
[core] new route track design
Diffstat (limited to 'graphics')
-rw-r--r--graphics/depth_constants.hpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/graphics/depth_constants.hpp b/graphics/depth_constants.hpp
index 806664d43c..9a329c88cc 100644
--- a/graphics/depth_constants.hpp
+++ b/graphics/depth_constants.hpp
@@ -18,11 +18,12 @@ namespace graphics
static const int balloonBaseDepth = countryStatusDepth - (balloonContentInc + 10);
static const int locationDepth = balloonBaseDepth - 10;
- static const int poiDepth = locationDepth - 10;
- static const int bookmarkDepth = poiDepth;
- static const int routingFinishDepth = bookmarkDepth - balloonContentInc;
- static const int routingSymbolsDepth = routingFinishDepth;
+ static const int locationFaultDepth = locationDepth - 10;
+
+ static const int routingFinishDepth = locationFaultDepth - balloonContentInc;
+ static const int activePinDepth = routingFinishDepth - balloonContentInc;
+ static const int routingSymbolsDepth = activePinDepth - balloonContentInc;
static const int tracksDepth = routingSymbolsDepth - balloonContentInc;
static const int tracksOutlineDepth = tracksDepth - 10;
- static const int activePinDepth = tracksOutlineDepth - 10;
+ static const int bookmarkDepth = tracksOutlineDepth - balloonContentInc;
}