| 272 | |
| 273 | template<typename T, PxU32 N, typename Alloc> |
| 274 | void exportInlineArray(const Ps::InlineArray<T, N, Alloc>& a, PxSerializationContext& context) |
| 275 | { |
| 276 | if(!a.isInlined()) |
| 277 | Cm::exportArray(a, context); |
| 278 | } |
| 279 | |
| 280 | template<typename T, PxU32 N, typename Alloc> |
| 281 | void importInlineArray(Ps::InlineArray<T, N, Alloc>& a, PxDeserializationContext& context) |
no test coverage detected