| 96 | } |
| 97 | |
| 98 | uint32_t ColorToARGB(df::ColorConstant const & colorConstant) |
| 99 | { |
| 100 | auto const color = df::GetColorConstant(colorConstant); |
| 101 | return color.GetAlpha() << 24 | color.GetRed() << 16 | color.GetGreen() << 8 | color.GetBlue(); |
| 102 | } |
| 103 | |
| 104 | vector<m2::PointF> GetTransitMarkerSizes(float markerScale, float maxRouteWidth) |
| 105 | { |
no test coverage detected