diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 10ea767195..bb6c54f5b2 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -398,12 +398,12 @@ BaseApplyFeature::BaseApplyFeature(TileKey const & tileKey, TInsertShapeFn const void BaseApplyFeature::ExtractCaptionParams(CaptionDefProto const * primaryProto, CaptionDefProto const * secondaryProto, - double depth, TextViewParams & params) const + float depth, TextViewParams & params) const { dp::FontDecl decl; CaptionDefProtoToFontDecl(primaryProto, decl); - params.m_depth = static_cast(depth); + params.m_depth = depth; params.m_featureId = m_id; auto & titleDecl = params.m_titleDecl; @@ -509,7 +509,7 @@ void ApplyPointFeature::Finish(ref_ptr texMng) params.m_tileCenter = m_tileRect.Center(); params.m_depthTestEnabled = m_depthLayer != DepthLayer::NavigationLayer && m_depthLayer != DepthLayer::OverlayLayer; - params.m_depth = static_cast(m_symbolDepth); + params.m_depth = m_symbolDepth; params.m_depthLayer = m_depthLayer; params.m_minVisibleScale = m_minVisibleScale; params.m_rank = m_rank; @@ -738,7 +738,7 @@ void ApplyAreaFeature::ProcessAreaRule(Stylist::TRuleWrapper const & rule) { AreaViewParams params; params.m_tileCenter = m_tileRect.Center(); - params.m_depth = static_cast(rule.m_depth); + params.m_depth = rule.m_depth; params.m_color = ToDrapeColor(areaRule->color()); params.m_minVisibleScale = m_minVisibleScale; params.m_rank = m_rank; @@ -862,7 +862,7 @@ void ApplyLineFeatureGeometry::ProcessLineRule(Stylist::TRuleWrapper const & rul PathSymProto const & symRule = pLineRule->pathsym(); PathSymbolViewParams params; params.m_tileCenter = m_tileRect.Center(); - params.m_depth = static_cast(rule.m_depth); + params.m_depth = rule.m_depth; params.m_minVisibleScale = m_minVisibleScale; params.m_rank = m_rank; params.m_symbolName = symRule.name(); @@ -879,7 +879,7 @@ void ApplyLineFeatureGeometry::ProcessLineRule(Stylist::TRuleWrapper const & rul LineViewParams params; params.m_tileCenter = m_tileRect.Center(); Extract(pLineRule, params); - params.m_depth = static_cast(rule.m_depth); + params.m_depth = rule.m_depth; params.m_minVisibleScale = m_minVisibleScale; params.m_rank = m_rank; params.m_baseGtoPScale = m_currentScaleGtoP; @@ -917,7 +917,7 @@ void ApplyLineFeatureAdditional::ProcessLineRule(Stylist::TRuleWrapper const & r if (m_clippedSplines.empty()) return; - m_depth = static_cast(rule.m_depth); + m_depth = rule.m_depth; ShieldRuleProto const * pShieldRule = rule.m_rule->GetShield(); if (pShieldRule != nullptr) diff --git a/drape_frontend/apply_feature_functors.hpp b/drape_frontend/apply_feature_functors.hpp index 8403dbed67..b08441c7eb 100644 --- a/drape_frontend/apply_feature_functors.hpp +++ b/drape_frontend/apply_feature_functors.hpp @@ -49,7 +49,7 @@ public: protected: void ExtractCaptionParams(CaptionDefProto const * primaryProto, CaptionDefProto const * secondaryProto, - double depth, TextViewParams & params) const; + float depth, TextViewParams & params) const; std::string ExtractHotelInfo() const; TInsertShapeFn m_insertShape; @@ -85,7 +85,7 @@ private: bool m_createdByEditor; bool m_obsoleteInEditor; DepthLayer m_depthLayer; - double m_symbolDepth; + float m_symbolDepth; SymbolRuleProto const * m_symbolRule; m2::PointF m_centerPoint; std::vector m_textParams; diff --git a/drape_frontend/stylist.cpp b/drape_frontend/stylist.cpp index a614919342..a31e4118fa 100644 --- a/drape_frontend/stylist.cpp +++ b/drape_frontend/stylist.cpp @@ -45,7 +45,7 @@ inline drule::rule_type_t Convert(Type t) } } -double constexpr kMinPriority = std::numeric_limits::lowest(); +float constexpr kMinPriority = std::numeric_limits::lowest(); inline bool IsTypeOf(drule::Key const & key, int flags) { @@ -138,7 +138,7 @@ private: if (lineRule != nullptr && (lineRule->width() < 1e-5 && !lineRule->has_pathsym())) return; - m_rules.push_back({ dRule, depth, key.m_hatching }); + m_rules.push_back({ dRule, static_cast(depth), key.m_hatching }); } void Init() @@ -355,7 +355,7 @@ double GetFeaturePriority(FeatureType & f, int const zoomLevel) Aggregator aggregator(f, types.GetGeomType(), zoomLevel, keys.size()); aggregator.AggregateKeys(keys); - double maxPriority = kMinPriority; + float maxPriority = kMinPriority; for (auto const & rule : aggregator.m_rules) { if (rule.m_depth > maxPriority) diff --git a/drape_frontend/stylist.hpp b/drape_frontend/stylist.hpp index 249a25ccd6..6654935835 100644 --- a/drape_frontend/stylist.hpp +++ b/drape_frontend/stylist.hpp @@ -62,7 +62,7 @@ public: struct TRuleWrapper { drule::BaseRule const * m_rule; - double m_depth; + float m_depth; bool m_hatching; };