| 131 | } |
| 132 | |
| 133 | static bool testBitmap(const BitMap& bitmap, PxU32 size, const BpHandle* handles) |
| 134 | { |
| 135 | while(size--) |
| 136 | { |
| 137 | const BpHandle h = *handles++; |
| 138 | if(bitmap.test(h)) |
| 139 | return false; |
| 140 | } |
| 141 | return true; |
| 142 | } |
| 143 | |
| 144 | bool BroadPhaseUpdateData::isValid() const |
| 145 | { |