Home
last modified time | relevance | path

Searched refs:recycled_resources_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/cc/resources/
Dvideo_resource_updater.cc178 for (size_t i = 0; i < recycled_resources_.size(); ++i) { in CreateForSoftwarePlanes()
180 recycled_resources_[i].resource_format == output_resource_format && in CreateForSoftwarePlanes()
181 recycled_resources_[i].resource_size == output_plane_resource_size; in CreateForSoftwarePlanes()
184 recycled_resources_[i].resource_id); in CreateForSoftwarePlanes()
186 resource_id = recycled_resources_[i].resource_id; in CreateForSoftwarePlanes()
187 mailbox = recycled_resources_[i].mailbox; in CreateForSoftwarePlanes()
188 recycled_resources_.erase(recycled_resources_.begin() + i); in CreateForSoftwarePlanes()
385 while (!updater->recycled_resources_.empty() && in RecycleResource()
386 updater->recycled_resources_.back().resource_format != in RecycleResource()
388 updater->DeleteResource(updater->recycled_resources_.back().resource_id); in RecycleResource()
[all …]
Dvideo_resource_updater.h121 std::vector<PlaneResource> recycled_resources_; variable