| 223 | } |
| 224 | |
| 225 | void NpShapeManager::teardownSceneQuery(SceneQueryManager& sqManager, const NpShape& shape) |
| 226 | { |
| 227 | const PxU32 index = mShapes.find(&shape); |
| 228 | PX_ASSERT(index!=0xffffffff); |
| 229 | teardownSceneQuery(sqManager, index); |
| 230 | } |
| 231 | |
| 232 | void NpShapeManager::setupAllSceneQuery(NpScene* scene, const PxRigidActor& actor, bool hasPrunerStructure, const PxBounds3* bounds, const Gu::BVHStructure* bvhStructure) |
| 233 | { |
no test coverage detected