| 215 | } |
| 216 | |
| 217 | void NpShapeManager::setupSceneQuery(SceneQueryManager& sqManager, const PxRigidActor& actor, const NpShape& shape) |
| 218 | { |
| 219 | PX_ASSERT(shape.getFlags() & PxShapeFlag::eSCENE_QUERY_SHAPE); |
| 220 | const PxU32 index = mShapes.find(&shape); |
| 221 | PX_ASSERT(index!=0xffffffff); |
| 222 | setupSceneQuery(sqManager, actor, index); |
| 223 | } |
| 224 | |
| 225 | void NpShapeManager::teardownSceneQuery(SceneQueryManager& sqManager, const NpShape& shape) |
| 226 | { |
no test coverage detected