Drape overaly depth normalization fix.

This commit is contained in:
Lev Dragunov 2015-12-11 23:28:04 +03:00 committed by Sergey Yershov
parent 799a2dd6a9
commit f9e202db45

View file

@ -248,7 +248,7 @@ uint64_t CalculateOverlayPriority(int minZoomLevel, uint8_t rank, float depth)
float const kMinDepth = -100000.0f;
float const kMaxDepth = 100000.0f;
float const d = my::clamp(depth, kMinDepth, kMaxDepth) + kMaxDepth;
float const d = my::clamp(depth, kMinDepth, kMaxDepth) - kMinDepth;
uint32_t const priority = static_cast<uint32_t>(d);
return (static_cast<uint64_t>(minZoom) << 56) |