| 415 | } |
| 416 | |
| 417 | void NpFactory::releaseAggregateToPool(NpAggregate& aggregate) |
| 418 | { |
| 419 | PX_ASSERT(aggregate.getBaseFlags() & PxBaseFlag::eOWNS_MEMORY); |
| 420 | Ps::Mutex::ScopedLock lock(mAggregatePoolLock); |
| 421 | mAggregatePool.destroy(&aggregate); |
| 422 | } |
| 423 | |
| 424 | void NpFactory::onAggregateRelease(PxAggregate* a) |
| 425 | { |
no test coverage detected