Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(789)

Unified Diff: cc/resources/tile_manager.cc

Issue 924613002: cc: Switch eviction iterators to consider combined priority. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/resources/tile_manager.cc
diff --git a/cc/resources/tile_manager.cc b/cc/resources/tile_manager.cc
index 94b6332a9aa4229bcfaa1b90831beba679a39416..8ccc64885ffef7624f255635fdf701af93ec8334 100644
--- a/cc/resources/tile_manager.cc
+++ b/cc/resources/tile_manager.cc
@@ -530,8 +530,12 @@ TileManager::FreeTileResourcesWithLowerPriorityUntilUsageIsWithinLimit(
break;
Tile* tile = eviction_priority_queue->Top();
- if (!other_priority.IsHigherPriorityThan(tile->combined_priority()))
+ const TilePriority& current_priority = tile->combined_priority();
+ if (!tile->is_occluded_combined() &&
+ (current_priority.resolution != NON_IDEAL_RESOLUTION) &&
vmiura 2015/02/12 22:18:41 What are the implications of these additional chec
vmpstr 2015/02/12 23:38:19 This is just making us be able to have more memory
+ !other_priority.IsHigherPriorityThan(tile->combined_priority())) {
break;
+ }
*usage -= MemoryUsage::FromTile(tile);
FreeResourcesForTileAndNotifyClientIfTileWasReadyToDraw(tile);

Powered by Google App Engine
This is Rietveld 408576698