Searched refs:rect_history_ (Results 1 – 2 of 2) sorted by relevance
164 SortedRectMap::iterator it = std::lower_bound(rect_history_.begin(), in RectDataForLayer()165 rect_history_.end(), data); in RectDataForLayer()167 if (it == rect_history_.end() || it->layer_id_ != layer_id) { in RectDataForLayer()169 it = rect_history_.insert(it, data); in RectDataForLayer()229 SortedRectMap::iterator cur_pos = rect_history_.begin(); in TrackDamageFromLeftoverRects()240 while (cur_pos < rect_history_.end()) { in TrackDamageFromLeftoverRects()253 if (copy_pos != rect_history_.end()) in TrackDamageFromLeftoverRects()254 rect_history_.erase(copy_pos, rect_history_.end()); in TrackDamageFromLeftoverRects()257 if (rect_history_.capacity() > rect_history_.size() * 4) in TrackDamageFromLeftoverRects()258 SortedRectMap(rect_history_).swap(rect_history_); in TrackDamageFromLeftoverRects()
82 SortedRectMap rect_history_; variable