| 1231 | } |
| 1232 | |
| 1233 | void addArraySize(const osg::Array* array, unsigned& size) |
| 1234 | { |
| 1235 | if (array != nullptr) |
| 1236 | size += array->getNumElements(); |
| 1237 | } |
| 1238 | |
| 1239 | void addArraySizes(const std::vector<osg::ref_ptr<osg::Array>>& dst, |
| 1240 | const std::vector<osg::ref_ptr<osg::Array>>& src, std::vector<unsigned>& sizes) |
no test coverage detected