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