fix depth layout of gui elements

This commit is contained in:
ExMix 2013-12-15 15:26:07 +03:00 committed by Alex Zolotarev
parent 48c58c3842
commit a599876510

View file

@ -7,17 +7,17 @@ namespace graphics
static const int debugDepth = maxDepth;
static const int benchmarkDepth = maxDepth;
static const int compassDepth = maxDepth;
static const int rulerDepth = maxDepth;
static const int countryStatusDepth = maxDepth - 10;
/// @todo 100 is a temporary solution fo iOS.
/// Need to review logic of gui elements, glyphs and symbols caching
/// (display_list_cache.dpp). Depth is hardcoded there.
static const int balloonContentInc = 100;
static const int balloonBaseDepth = maxDepth - balloonContentInc;
static const int balloonBaseDepth = countryStatusDepth - (balloonContentInc + 10);
static const int compassDepth = balloonBaseDepth - 10;
static const int rulerDepth = compassDepth;
static const int locationDepth = rulerDepth - 10;
static const int locationDepth = balloonBaseDepth - 10;
static const int poiAndBookmarkDepth = locationDepth - 10;
static const int tracksDepth = poiAndBookmarkDepth - 10;
static const int countryStatusDepth = poiAndBookmarkDepth - 10;
}