Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'drape_frontend/path_symbol_shape.cpp')
-rw-r--r--drape_frontend/path_symbol_shape.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/drape_frontend/path_symbol_shape.cpp b/drape_frontend/path_symbol_shape.cpp
index bd4313ed7e..6c9598f601 100644
--- a/drape_frontend/path_symbol_shape.cpp
+++ b/drape_frontend/path_symbol_shape.cpp
@@ -26,8 +26,7 @@ public:
: OverlayHandle(FeatureID(), dp::Center, 0.0f),
m_params(params), m_spline(spl), m_scaleFactor(1.0f),
m_positions(maxCount * VertexPerQuad), m_maxCount(maxCount),
- m_symbolHalfWidth(hw), m_symbolHalfHeight(hh),
- m_bbox(1, m2::RectF(0, 0, 0, 0))
+ m_symbolHalfWidth(hw), m_symbolHalfHeight(hh)
{
SetIsVisible(true);
}
@@ -59,9 +58,9 @@ public:
}
}
- vector<m2::RectF> & GetPixelShape(ScreenBase const & screen)
+ void GetPixelShape(ScreenBase const & screen, Rects & rects) const
{
- return m_bbox;
+ rects.push_back(m2::RectF(0, 0, 0, 0));
}
virtual m2::RectD GetPixelRect(ScreenBase const & screen) const
@@ -86,7 +85,6 @@ private:
int const m_maxCount;
float m_symbolHalfWidth;
float m_symbolHalfHeight;
- vector<m2::RectF> m_bbox;
};
PathSymbolShape::PathSymbolShape(m2::SharedSpline const & spline,