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

Unified Diff: cc/resources/picture_layer_tiling_set.cc

Issue 15995033: cc: Low quality support for low res tiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase fix Created 7 years, 6 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
« no previous file with comments | « cc/resources/picture_layer_tiling.cc ('k') | cc/resources/picture_layer_tiling_set_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/picture_layer_tiling_set.cc
diff --git a/cc/resources/picture_layer_tiling_set.cc b/cc/resources/picture_layer_tiling_set.cc
index 8a82d935b57fb0a53b7506b7e130419c0617c0e7..9ca9a6a4bfd2b68a1134c90cc6667b194a9014cf 100644
--- a/cc/resources/picture_layer_tiling_set.cc
+++ b/cc/resources/picture_layer_tiling_set.cc
@@ -198,7 +198,7 @@ PictureLayerTilingSet::CoverageIterator::operator++() {
// Loop until we find a valid place to stop.
while (true) {
while (tiling_iter_ &&
- (!*tiling_iter_ || !tiling_iter_->tile_version().IsReadyToDraw())) {
+ (!*tiling_iter_ || !tiling_iter_->IsReadyToDraw(NULL))) {
missing_region_.Union(tiling_iter_.geometry_rect());
++tiling_iter_;
}
« no previous file with comments | « cc/resources/picture_layer_tiling.cc ('k') | cc/resources/picture_layer_tiling_set_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698