| 291 | } |
| 292 | |
| 293 | inline void const * LoadInnerTriangles(void const * pBeg, size_t count, GeometryCodingParams const & params, |
| 294 | OutPointsT & triangles) |
| 295 | { |
| 296 | CHECK_GREATER_OR_EQUAL(count, 2, ()); |
| 297 | OutPointsT points; |
| 298 | void const * res = LoadInner(&coding::DecodeTriangleStrip, pBeg, count, params, points); |
| 299 | |
| 300 | StripToTriangles(count, points, triangles); |
| 301 | return res; |
| 302 | } |
| 303 | |
| 304 | void DecodeTriangles(coding::InDeltasT const & deltas, m2::PointU const & basePoint, m2::PointU const & maxPoint, |
| 305 | coding::OutPointsT & triangles); |
no test coverage detected