| 383 | } |
| 384 | |
| 385 | void NpFactory::releaseConstraintToPool(NpConstraint& constraint) |
| 386 | { |
| 387 | PX_ASSERT(constraint.getBaseFlags() & PxBaseFlag::eOWNS_MEMORY); |
| 388 | Ps::Mutex::ScopedLock lock(mConstraintPoolLock); |
| 389 | mConstraintPool.destroy(&constraint); |
| 390 | } |
| 391 | |
| 392 | void NpFactory::onConstraintRelease(PxConstraint* c) |
| 393 | { |
no test coverage detected