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