| 304 | |
| 305 | #ifdef USE_FULLY_INSIDE_FLAG |
| 306 | static PX_FORCE_INLINE void setBit(BitArray& bitmap, MBP_ObjectIndex objectIndex) |
| 307 | { |
| 308 | #ifdef HWSCAN |
| 309 | bitmap.clearBitChecked(objectIndex); //HWSCAN |
| 310 | #else |
| 311 | bitmap.setBitChecked(objectIndex); |
| 312 | #endif |
| 313 | } |
| 314 | |
| 315 | static PX_FORCE_INLINE void clearBit(BitArray& bitmap, MBP_ObjectIndex objectIndex) |
| 316 | { |
no test coverage detected