| 60 | } |
| 61 | |
| 62 | void NpMaterial::onRefCountZero() |
| 63 | { |
| 64 | void* ud = userData; |
| 65 | |
| 66 | if(getBaseFlags() & PxBaseFlag::eOWNS_MEMORY) |
| 67 | NpFactory::getInstance().releaseMaterialToPool(*this); |
| 68 | else |
| 69 | this->~NpMaterial(); |
| 70 | |
| 71 | NpPhysics::getInstance().notifyDeletionListenersMemRelease(this, ud); |
| 72 | } |
| 73 | |
| 74 | NpMaterial* NpMaterial::createObject(PxU8*& address, PxDeserializationContext& context) |
| 75 | { |
nothing calls this directly
no test coverage detected