| 252 | /// <param name="data">Array to read</param> |
| 253 | template<typename T, typename AllocationType = HeapAllocation> |
| 254 | DEPRECATED("Use Read method") void ReadArray(Array<T, AllocationType>* data) |
| 255 | { |
| 256 | Read(*data); |
| 257 | } |
| 258 | |
| 259 | // Deserialization of math types with float or double depending on the context (must match serialization) |
| 260 | // Set useDouble=true to explicitly use 64-bit precision for serialized data |