| 214 | PxU32 size() const { return getWordCount()*32; } |
| 215 | |
| 216 | void copy(const BitMapBase& a) |
| 217 | { |
| 218 | extendUninitialized(a.getWordCount()<<5); |
| 219 | PxMemCopy(mMap, a.mMap, a.getWordCount() * sizeof(PxU32)); |
| 220 | if(getWordCount() > a.getWordCount()) |
| 221 | PxMemSet(mMap + a.getWordCount(), 0, (getWordCount() - a.getWordCount()) * sizeof(PxU32)); |
| 222 | } |
| 223 | |
| 224 | PX_INLINE PxU32 count() const |
| 225 | { |
no test coverage detected