PT: TODO: re-inline this
| 135 | |
| 136 | // PT: TODO: re-inline this |
| 137 | void PrunerExt::addToDirtyList(PrunerHandle handle) |
| 138 | { |
| 139 | Cm::BitMap& dirtyMap = mDirtyMap; |
| 140 | if(!dirtyMap.test(handle)) |
| 141 | { |
| 142 | dirtyMap.set(handle); |
| 143 | mDirtyList.pushBack(handle); |
| 144 | mTimestamp++; |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | // PT: TODO: re-inline this |
| 149 | Ps::IntBool PrunerExt::isDirty(PrunerHandle handle) const |
no test coverage detected