| 209 | PX_NOINLINE void Resize(PxcScratchAllocator* scratchAllocator); |
| 210 | |
| 211 | PX_FORCE_INLINE void AddData(const PxU32 data, PxcScratchAllocator* scratchAllocator) |
| 212 | { |
| 213 | if(mSize==mCapacity) |
| 214 | Resize(scratchAllocator); |
| 215 | |
| 216 | PX_ASSERT(mSize<mCapacity); |
| 217 | mData[mSize++] = BpHandle(data); |
| 218 | } |
| 219 | }; |
| 220 | |
| 221 | void addPair(const BpHandle id0, const BpHandle id1, PxcScratchAllocator* scratchAllocator, SapPairManager& pairManager, DataArray& dataArray); |
no test coverage detected