diff --git a/drape/overlay_handle.cpp b/drape/overlay_handle.cpp index 15c4d3fe45..6ef511873b 100644 --- a/drape/overlay_handle.cpp +++ b/drape/overlay_handle.cpp @@ -232,18 +232,16 @@ std::string SquareHandle::GetOverlayDebugInfo() /// @param[in] depth Manual priority from styles (bigger is better) uint64_t CalculateOverlayPriority(int minZoomLevel, uint8_t rank, float depth) { + ASSERT(0 <= depth && depth <= 100000, (depth)); + // Even if minZoomLevel < 0 (-1 is not visible), we will get more consistent |minZoom| value (less is worse). ASSERT_GREATER_OR_EQUAL(minZoomLevel, 0, ()); uint8_t const minZoom = 0xFF - static_cast(minZoomLevel); - float constexpr kMinDepth = -100000.0f; - float constexpr kMaxDepth = 100000.0f; - float const d = base::Clamp(depth, kMinDepth, kMaxDepth) - kMinDepth; - // Pack into uint64_t priority value (bigger is better). // [1 byte - zoom][4 bytes - priority][1 byte - rank][2 bytes - 0xFFFF]. return (static_cast(minZoom) << 56) | - (static_cast(d) << 24) | + (static_cast(depth) << 24) | (static_cast(rank) << 16) | static_cast(0xFFFF); }