| 77 | } |
| 78 | |
| 79 | void exportExtraData(PxSerializationContext& stream, void*) |
| 80 | { |
| 81 | if(mMap && getWordCount()) |
| 82 | { |
| 83 | stream.alignData(PX_SERIAL_ALIGN); |
| 84 | stream.writeData(mMap, getWordCount()*sizeof(PxU32)); |
| 85 | } |
| 86 | } |
| 87 | void importExtraData(PxDeserializationContext& context) |
| 88 | { |
| 89 | if(mMap && getWordCount()) |
nothing calls this directly
no test coverage detected