| 368 | } |
| 369 | |
| 370 | void const * LoadInner(DecodeFunT fn, void const * pBeg, size_t count, GeometryCodingParams const & params, |
| 371 | OutPointsT & points) |
| 372 | { |
| 373 | DeltasT deltas; |
| 374 | deltas.reserve(count); |
| 375 | void const * ret = ReadVarUint64Array(static_cast<char const *>(pBeg), count, base::MakeBackInsertFunctor(deltas)); |
| 376 | |
| 377 | Decode(fn, deltas, params, points); |
| 378 | return ret; |
| 379 | } |
| 380 | |
| 381 | TrianglesChainSaver::TrianglesChainSaver(GeometryCodingParams const & params) |
| 382 | { |
no test coverage detected