| 171 | } |
| 172 | |
| 173 | NpShape* NpShape::createObject(PxU8*& address, PxDeserializationContext& context) |
| 174 | { |
| 175 | NpShape* obj = new (address) NpShape(PxBaseFlag::eIS_RELEASABLE); |
| 176 | address += sizeof(NpShape); |
| 177 | obj->importExtraData(context); |
| 178 | obj->resolveReferences(context); |
| 179 | return obj; |
| 180 | } |
| 181 | //~PX_SERIALIZATION |
| 182 | |
| 183 | PxU32 NpShape::getReferenceCount() const |
nothing calls this directly
no test coverage detected