Tune static buffer size in feature's buffer_vector.

This commit is contained in:
vng 2011-01-16 18:28:01 +02:00 committed by Alex Zolotarev
parent 3763703183
commit 2dda2005f5

View file

@ -424,9 +424,13 @@ private:
void ParseAll(int scale) const;
mutable buffer_vector<int64_t, 16> m_InnerPoints;
// For better result this value should be greater than 17
// (number of points in inner triangle-strips).
static const size_t static_buffer = 32;
typedef buffer_vector<m2::PointD, 16> points_t;
mutable buffer_vector<int64_t, static_buffer> m_InnerPoints;
typedef buffer_vector<m2::PointD, static_buffer> points_t;
mutable points_t m_Points, m_Triangles;
FilesContainerR * m_cont;