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

Unified Diff: cc/layers/picture_layer_impl.cc

Issue 260963008: Fixing crash in PictureLayerImpl::MarkVisibleResourcesAsRequired when low-res tiles are disabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding missed file and fixing TileManager unit test Created 6 years, 7 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 | « no previous file | cc/layers/picture_layer_impl_unittest.cc » ('j') | cc/test/fake_layer_tree_settings.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/picture_layer_impl.cc
diff --git a/cc/layers/picture_layer_impl.cc b/cc/layers/picture_layer_impl.cc
index 85249812d5fbc9d5ea119537e014ae5e80eb80b2..b8e094c8d847ff09fa44bb3b7e529b30f68096f3 100644
--- a/cc/layers/picture_layer_impl.cc
+++ b/cc/layers/picture_layer_impl.cc
@@ -790,27 +790,46 @@ void PictureLayerImpl::MarkVisibleResourcesAsRequired() const {
// active layer is also missing when both this layer and its twin have 2
// tilings (high and low). This avoids having to iterate/track coverage of
// non-ideal tilings during the last draw call on the active layer.
- if (high_res && low_res && tilings_->num_tilings() == 2 &&
- twin_layer_ && twin_layer_->tilings_->num_tilings() == 2) {
- twin_low_res = GetTwinTiling(low_res);
- if (twin_low_res)
+ if (ShouldHaveLowResTiling()) {
reveman 2014/05/12 02:30:52 why this change? is this broken before this change
Sergey 2014/05/12 08:07:21 If you set create_low_res_tiling=false, you will g
reveman 2014/05/12 15:44:04 Probably not but if you're fixing a bug in the imp
Sergey 2014/05/12 23:37:47 There was one, let me make sure we have it... Actu
Sergey 2014/05/13 05:37:44 Found that test cases once again: NothingRequiredI
+ if (high_res && low_res && tilings_->num_tilings() == 2 &&
+ twin_layer_ && twin_layer_->tilings_->num_tilings() == 2) {
+ twin_low_res = GetTwinTiling(low_res);
+ if (twin_low_res)
+ twin_high_res = GetTwinTiling(high_res);
+ }
+ } else {
+ if (high_res && tilings_->num_tilings() == 1 &&
+ twin_layer_ && twin_layer_->tilings_->num_tilings() == 1) {
twin_high_res = GetTwinTiling(high_res);
+ }
}
+
// If this layer and its twin have different transforms, then don't compare
// them and only allow activating to high res tiles, since tiles on each layer
// will be in different places on screen.
- if (!twin_high_res || !twin_low_res ||
- twin_layer_->layer_tree_impl()->RequiresHighResToDraw() ||
- draw_properties().screen_space_transform !=
- twin_layer_->draw_properties().screen_space_transform) {
- twin_high_res = NULL;
- twin_low_res = NULL;
+
+ if (ShouldHaveLowResTiling()) {
+ if (!twin_high_res || !twin_low_res ||
+ twin_layer_->layer_tree_impl()->RequiresHighResToDraw() ||
+ draw_properties().screen_space_transform !=
+ twin_layer_->draw_properties().screen_space_transform) {
+ twin_high_res = NULL;
+ twin_low_res = NULL;
+ }
+ } else {
+ if (!twin_high_res ||
+ twin_layer_->layer_tree_impl()->RequiresHighResToDraw() ||
+ draw_properties().screen_space_transform !=
+ twin_layer_->draw_properties().screen_space_transform) {
+ twin_high_res = NULL;
+ }
}
// As a second pass, mark as required any visible high res tiles not filled in
// by acceptable non-ideal tiles from the first pass.
if (MarkVisibleTilesAsRequired(
- high_res, twin_high_res, contents_scale_x(), rect, missing_region)) {
+ high_res, twin_high_res, contents_scale_x(), rect, missing_region) &&
+ ShouldHaveLowResTiling()) {
reveman 2014/05/12 15:44:04 is this required?
Sergey 2014/05/12 23:37:47 Actually, this one is more required, then the abov
// As an optional third pass, if a high res tile was skipped because its
// twin was also missing, then fall back to mark low res tiles as required
// in case the active twin is substituting those for missing high res
« no previous file with comments | « no previous file | cc/layers/picture_layer_impl_unittest.cc » ('j') | cc/test/fake_layer_tree_settings.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698