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

Side by Side Diff: cc/resources/picture_layer_tiling.cc

Issue 1051993002: cc: Remove tile sharing from tilings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 5 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/resources/picture_layer_tiling.h" 5 #include "cc/resources/picture_layer_tiling.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <limits> 9 #include <limits>
10 #include <set> 10 #include <set>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 contents_scale)).IsEmpty()) 72 contents_scale)).IsEmpty())
73 << "Tiling created with scale too small as contents become empty." 73 << "Tiling created with scale too small as contents become empty."
74 << " Layer bounds: " << raster_source_->GetSize().ToString() 74 << " Layer bounds: " << raster_source_->GetSize().ToString()
75 << " Contents scale: " << contents_scale; 75 << " Contents scale: " << contents_scale;
76 76
77 tiling_data_.SetTilingSize(content_bounds); 77 tiling_data_.SetTilingSize(content_bounds);
78 tiling_data_.SetMaxTextureSize(tile_size); 78 tiling_data_.SetMaxTextureSize(tile_size);
79 } 79 }
80 80
81 PictureLayerTiling::~PictureLayerTiling() { 81 PictureLayerTiling::~PictureLayerTiling() {
82 for (TileMap::const_iterator it = tiles_.begin(); it != tiles_.end(); ++it)
83 it->second->set_shared(false);
84 } 82 }
85 83
86 // static 84 // static
87 float PictureLayerTiling::CalculateSoonBorderDistance( 85 float PictureLayerTiling::CalculateSoonBorderDistance(
88 const gfx::Rect& visible_rect_in_content_space, 86 const gfx::Rect& visible_rect_in_content_space,
89 float content_to_screen_scale) { 87 float content_to_screen_scale) {
90 float max_dimension = std::max(visible_rect_in_content_space.width(), 88 float max_dimension = std::max(visible_rect_in_content_space.width(),
91 visible_rect_in_content_space.height()); 89 visible_rect_in_content_space.height());
92 return std::min( 90 return std::min(
93 kMaxSoonBorderDistanceInScreenPixels / content_to_screen_scale, 91 kMaxSoonBorderDistanceInScreenPixels / content_to_screen_scale,
94 max_dimension * kSoonBorderDistanceViewportPercentage); 92 max_dimension * kSoonBorderDistanceViewportPercentage);
95 } 93 }
96 94
97 Tile* PictureLayerTiling::CreateTile(int i, 95 Tile* PictureLayerTiling::CreateTile(int i, int j) {
98 int j,
99 const PictureLayerTiling* twin_tiling,
100 PictureLayerTiling* recycled_twin) {
101 // Can't have both a (pending or active) twin and a recycled twin tiling.
102 DCHECK_IMPLIES(twin_tiling, !recycled_twin);
103 DCHECK_IMPLIES(recycled_twin, !twin_tiling);
104 TileMapKey key(i, j); 96 TileMapKey key(i, j);
105 DCHECK(tiles_.find(key) == tiles_.end()); 97 DCHECK(tiles_.find(key) == tiles_.end());
106 98
107 gfx::Rect paint_rect = tiling_data_.TileBoundsWithBorder(i, j); 99 gfx::Rect paint_rect = tiling_data_.TileBoundsWithBorder(i, j);
108 gfx::Rect tile_rect = paint_rect; 100 gfx::Rect tile_rect = paint_rect;
109 tile_rect.set_size(tiling_data_.max_texture_size()); 101 tile_rect.set_size(tiling_data_.max_texture_size());
110 102
111 // Check our twin for a valid tile. 103 if (!raster_source_->CoversRect(tile_rect, contents_scale_)) {
112 if (twin_tiling && 104 failed_tile_indices_.push_back(key);
enne (OOO) 2015/04/20 22:36:28 failed could be a better word. What about remove_
vmpstr 2015/04/22 18:38:57 Done.
113 tiling_data_.max_texture_size() == 105 return nullptr;
114 twin_tiling->tiling_data_.max_texture_size()) {
115 if (Tile* candidate_tile = twin_tiling->TileAt(i, j)) {
116 gfx::Rect rect =
117 gfx::ScaleToEnclosingRect(paint_rect, 1.0f / contents_scale_);
118 const Region* invalidation = client_->GetPendingInvalidation();
119 if (!invalidation || !invalidation->Intersects(rect)) {
120 DCHECK(!candidate_tile->is_shared());
121 DCHECK_EQ(i, candidate_tile->tiling_i_index());
122 DCHECK_EQ(j, candidate_tile->tiling_j_index());
123 candidate_tile->set_shared(true);
124 tiles_[key] = candidate_tile;
125 return candidate_tile;
126 }
127 }
128 } 106 }
129 107
130 if (!raster_source_->CoversRect(tile_rect, contents_scale_)) 108 scoped_refptr<Tile> tile =
131 return nullptr; 109 client_->CreateTile(contents_scale_, tile_rect, &raster_source_);
132
133 // Create a new tile because our twin didn't have a valid one.
134 scoped_refptr<Tile> tile = client_->CreateTile(contents_scale_, tile_rect);
135 DCHECK(!tile->is_shared());
136 tile->set_tiling_index(i, j); 110 tile->set_tiling_index(i, j);
137 tiles_[key] = tile; 111 tiles_[key] = tile;
138
139 if (recycled_twin) {
140 DCHECK(recycled_twin->tiles_.find(key) == recycled_twin->tiles_.end());
141 // Do what recycled_twin->CreateTile() would do.
142 tile->set_shared(true);
143 recycled_twin->tiles_[key] = tile;
144 }
145 return tile.get(); 112 return tile.get();
146 } 113 }
147 114
148 void PictureLayerTiling::CreateMissingTilesInLiveTilesRect() { 115 void PictureLayerTiling::CreateMissingTilesInLiveTilesRect() {
149 const PictureLayerTiling* twin_tiling =
150 client_->GetPendingOrActiveTwinTiling(this);
151 // There is no recycled twin during commit from the main thread which is when
152 // this occurs.
153 PictureLayerTiling* null_recycled_twin = nullptr;
154 DCHECK_EQ(null_recycled_twin, client_->GetRecycledTwinTiling(this));
155 bool include_borders = false; 116 bool include_borders = false;
156 for (TilingData::Iterator iter( 117 for (TilingData::Iterator iter(&tiling_data_, live_tiles_rect_,
157 &tiling_data_, live_tiles_rect_, include_borders); 118 include_borders);
158 iter; 119 iter; ++iter) {
159 ++iter) {
160 TileMapKey key = iter.index(); 120 TileMapKey key = iter.index();
161 TileMap::iterator find = tiles_.find(key); 121 TileMap::iterator find = tiles_.find(key);
162 if (find != tiles_.end()) 122 if (find != tiles_.end())
163 continue; 123 continue;
164 CreateTile(key.first, key.second, twin_tiling, null_recycled_twin); 124
125 if (ShouldCreateTileAt(key.first, key.second))
126 CreateTile(key.first, key.second);
165 } 127 }
166
167 VerifyLiveTilesRect(false); 128 VerifyLiveTilesRect(false);
168 } 129 }
169 130
170 void PictureLayerTiling::CloneTilesAndPropertiesFrom( 131 void PictureLayerTiling::TakeTilesAndPropertiesFrom(
171 const PictureLayerTiling& twin_tiling) { 132 PictureLayerTiling* pending_twin) {
172 DCHECK_EQ(&twin_tiling, client_->GetPendingOrActiveTwinTiling(this)); 133 TRACE_EVENT0("cc", "TakeTilesAndPropertiesFrom");
134 SetRasterSourceAndResize(pending_twin->raster_source_);
173 135
174 SetRasterSourceAndResize(twin_tiling.raster_source_); 136 for (const auto& key : pending_twin->failed_tile_indices_)
175 DCHECK_EQ(twin_tiling.contents_scale_, contents_scale_); 137 RemoveTileAt(key.first, key.second);
176 DCHECK_EQ(twin_tiling.raster_source_, raster_source_);
177 DCHECK_EQ(twin_tiling.tile_size().ToString(), tile_size().ToString());
178 138
179 resolution_ = twin_tiling.resolution_; 139 pending_twin->failed_tile_indices_.clear();
140 failed_tile_indices_.clear();
180 141
181 SetLiveTilesRect(twin_tiling.live_tiles_rect()); 142 resolution_ = pending_twin->resolution_;
143 if (live_tiles_rect_.IsEmpty())
144 live_tiles_rect_ = pending_twin->live_tiles_rect();
145 else
146 SetLiveTilesRect(pending_twin->live_tiles_rect());
182 147
183 // Recreate unshared tiles. 148 for (auto& tile_pair : pending_twin->tiles_) {
184 std::vector<TileMapKey> to_remove; 149 Tile* tile = tile_pair.second.get();
185 for (const auto& tile_map_pair : tiles_) { 150 tile->set_raster_source(&raster_source_);
186 TileMapKey key = tile_map_pair.first; 151 tiles_[tile_pair.first] = tile_pair.second;
187 Tile* tile = tile_map_pair.second.get();
188 if (!tile->is_shared())
189 to_remove.push_back(key);
190 } 152 }
191 // The recycled twin does not exist since there is a pending twin (which is 153 pending_twin->tiles_.clear();
192 // |twin_tiling|).
193 PictureLayerTiling* null_recycled_twin = nullptr;
194 DCHECK_EQ(null_recycled_twin, client_->GetRecycledTwinTiling(this));
195 for (const auto& key : to_remove) {
196 RemoveTileAt(key.first, key.second, null_recycled_twin);
197 CreateTile(key.first, key.second, &twin_tiling, null_recycled_twin);
198 }
199 154
200 // Create any missing tiles from the |twin_tiling|. 155 VerifyLiveTilesRect(false);
201 for (const auto& tile_map_pair : twin_tiling.tiles_) {
202 TileMapKey key = tile_map_pair.first;
203 Tile* tile = tile_map_pair.second.get();
204 if (!tile->is_shared())
205 CreateTile(key.first, key.second, &twin_tiling, null_recycled_twin);
206 }
207 156
208 DCHECK_EQ(twin_tiling.tiles_.size(), tiles_.size()); 157 SetTilePriorityRects(pending_twin->current_content_to_screen_scale_,
209 #if DCHECK_IS_ON() 158 pending_twin->current_visible_rect_,
210 for (const auto& tile_map_pair : tiles_) 159 pending_twin->current_skewport_rect_,
211 DCHECK(tile_map_pair.second->is_shared()); 160 pending_twin->current_soon_border_rect_,
212 VerifyLiveTilesRect(false); 161 pending_twin->current_eventually_rect_,
213 #endif 162 pending_twin->current_occlusion_in_layer_space_);
214
215 UpdateTilePriorityRects(twin_tiling.current_content_to_screen_scale_,
216 twin_tiling.current_visible_rect_,
217 twin_tiling.current_skewport_rect_,
218 twin_tiling.current_soon_border_rect_,
219 twin_tiling.current_eventually_rect_,
220 twin_tiling.current_occlusion_in_layer_space_);
221 } 163 }
222 164
223 void PictureLayerTiling::SetRasterSourceAndResize( 165 void PictureLayerTiling::SetRasterSourceAndResize(
224 scoped_refptr<RasterSource> raster_source) { 166 scoped_refptr<RasterSource> raster_source) {
225 DCHECK(!raster_source->IsSolidColor()); 167 DCHECK(!raster_source->IsSolidColor());
226 gfx::Size old_layer_bounds = raster_source_->GetSize(); 168 gfx::Size old_layer_bounds = raster_source_->GetSize();
227 raster_source_.swap(raster_source); 169 raster_source_.swap(raster_source);
228 gfx::Size new_layer_bounds = raster_source_->GetSize(); 170 gfx::Size new_layer_bounds = raster_source_->GetSize();
229 gfx::Size content_bounds = 171 gfx::Size content_bounds =
230 gfx::ToCeiledSize(gfx::ScaleSize(new_layer_bounds, contents_scale_)); 172 gfx::ToCeiledSize(gfx::ScaleSize(new_layer_bounds, contents_scale_));
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 int after_bottom = -1; 205 int after_bottom = -1;
264 if (!live_tiles_rect_.IsEmpty()) { 206 if (!live_tiles_rect_.IsEmpty()) {
265 after_right = 207 after_right =
266 tiling_data_.TileXIndexFromSrcCoord(live_tiles_rect_.right() - 1); 208 tiling_data_.TileXIndexFromSrcCoord(live_tiles_rect_.right() - 1);
267 after_bottom = 209 after_bottom =
268 tiling_data_.TileYIndexFromSrcCoord(live_tiles_rect_.bottom() - 1); 210 tiling_data_.TileYIndexFromSrcCoord(live_tiles_rect_.bottom() - 1);
269 } 211 }
270 212
271 // There is no recycled twin since this is run on the pending tiling 213 // There is no recycled twin since this is run on the pending tiling
272 // during commit, and on the active tree during activate. 214 // during commit, and on the active tree during activate.
273 PictureLayerTiling* null_recycled_twin = nullptr;
274 DCHECK_EQ(null_recycled_twin, client_->GetRecycledTwinTiling(this));
275
276 // Drop tiles outside the new layer bounds if the layer shrank. 215 // Drop tiles outside the new layer bounds if the layer shrank.
277 for (int i = after_right + 1; i <= before_right; ++i) { 216 for (int i = after_right + 1; i <= before_right; ++i) {
278 for (int j = before_top; j <= before_bottom; ++j) 217 for (int j = before_top; j <= before_bottom; ++j)
279 RemoveTileAt(i, j, null_recycled_twin); 218 RemoveTileAt(i, j);
280 } 219 }
281 for (int i = before_left; i <= after_right; ++i) { 220 for (int i = before_left; i <= after_right; ++i) {
282 for (int j = after_bottom + 1; j <= before_bottom; ++j) 221 for (int j = after_bottom + 1; j <= before_bottom; ++j)
283 RemoveTileAt(i, j, null_recycled_twin); 222 RemoveTileAt(i, j);
284 } 223 }
285 224
286 // If the layer grew, the live_tiles_rect_ is not changed, but a new row
287 // and/or column of tiles may now exist inside the same live_tiles_rect_.
288 const PictureLayerTiling* twin_tiling =
289 client_->GetPendingOrActiveTwinTiling(this);
290 if (after_right > before_right) { 225 if (after_right > before_right) {
291 DCHECK_EQ(after_right, before_right + 1); 226 DCHECK_EQ(after_right, before_right + 1);
292 for (int j = before_top; j <= after_bottom; ++j) 227 for (int j = before_top; j <= after_bottom; ++j) {
293 CreateTile(after_right, j, twin_tiling, null_recycled_twin); 228 if (ShouldCreateTileAt(after_right, j))
229 CreateTile(after_right, j);
230 }
294 } 231 }
295 if (after_bottom > before_bottom) { 232 if (after_bottom > before_bottom) {
296 DCHECK_EQ(after_bottom, before_bottom + 1); 233 DCHECK_EQ(after_bottom, before_bottom + 1);
297 for (int i = before_left; i <= before_right; ++i) 234 for (int i = before_left; i <= before_right; ++i) {
298 CreateTile(i, after_bottom, twin_tiling, null_recycled_twin); 235 if (ShouldCreateTileAt(i, after_bottom))
236 CreateTile(i, after_bottom);
237 }
299 } 238 }
300 } 239 }
301 240
302 void PictureLayerTiling::Invalidate(const Region& layer_invalidation) { 241 void PictureLayerTiling::Invalidate(const Region& layer_invalidation) {
242 // We don't need to invalidate the pending tiling, since
243 // CreateMissingTilesInLiveTilesRect will populate all the tiles that we need.
244 if (client_->GetTree() == PENDING_TREE)
245 return;
246
247 // We only invalidate the active tiling when it's orphaned: it has no pending
248 // twin, so it's slated for removal in the future.
249 DCHECK(!client_->GetPendingOrActiveTwinTiling(this));
303 if (live_tiles_rect_.IsEmpty()) 250 if (live_tiles_rect_.IsEmpty())
304 return; 251 return;
305 std::vector<TileMapKey> new_tile_keys; 252 std::vector<TileMapKey> new_tile_keys;
306 gfx::Rect expanded_live_tiles_rect = 253 gfx::Rect expanded_live_tiles_rect =
307 tiling_data_.ExpandRectIgnoringBordersToTileBounds(live_tiles_rect_); 254 tiling_data_.ExpandRectIgnoringBordersToTileBounds(live_tiles_rect_);
308 for (Region::Iterator iter(layer_invalidation); iter.has_rect(); 255 for (Region::Iterator iter(layer_invalidation); iter.has_rect();
309 iter.next()) { 256 iter.next()) {
310 gfx::Rect layer_rect = iter.rect(); 257 gfx::Rect layer_rect = iter.rect();
311 gfx::Rect content_rect = 258 gfx::Rect content_rect =
312 gfx::ScaleToEnclosingRect(layer_rect, contents_scale_); 259 gfx::ScaleToEnclosingRect(layer_rect, contents_scale_);
313 // Consider tiles inside the live tiles rect even if only their border 260 // Consider tiles inside the live tiles rect even if only their border
314 // pixels intersect the invalidation. But don't consider tiles outside 261 // pixels intersect the invalidation. But don't consider tiles outside
315 // the live tiles rect with the same conditions, as they won't exist. 262 // the live tiles rect with the same conditions, as they won't exist.
316 int border_pixels = tiling_data_.border_texels(); 263 int border_pixels = tiling_data_.border_texels();
317 content_rect.Inset(-border_pixels, -border_pixels); 264 content_rect.Inset(-border_pixels, -border_pixels);
318 // Avoid needless work by not bothering to invalidate where there aren't 265 // Avoid needless work by not bothering to invalidate where there aren't
319 // tiles. 266 // tiles.
320 content_rect.Intersect(expanded_live_tiles_rect); 267 content_rect.Intersect(expanded_live_tiles_rect);
321 if (content_rect.IsEmpty()) 268 if (content_rect.IsEmpty())
322 continue; 269 continue;
323 // Since the content_rect includes border pixels already, don't include 270 // Since the content_rect includes border pixels already, don't include
324 // borders when iterating to avoid double counting them. 271 // borders when iterating to avoid double counting them.
325 bool include_borders = false; 272 bool include_borders = false;
326 for (TilingData::Iterator iter( 273 for (
327 &tiling_data_, content_rect, include_borders); 274 TilingData::Iterator iter(&tiling_data_, content_rect, include_borders);
328 iter; 275 iter; ++iter) {
329 ++iter) { 276 if (RemoveTileAt(iter.index_x(), iter.index_y()))
330 // There is no recycled twin for the pending tree during commit, or for
331 // the active tree during activation.
332 PictureLayerTiling* null_recycled_twin = nullptr;
333 DCHECK_EQ(null_recycled_twin, client_->GetRecycledTwinTiling(this));
334 if (RemoveTileAt(iter.index_x(), iter.index_y(), null_recycled_twin))
335 new_tile_keys.push_back(iter.index()); 277 new_tile_keys.push_back(iter.index());
336 } 278 }
337 } 279 }
338 280
339 if (!new_tile_keys.empty()) { 281 for (const auto& key : new_tile_keys)
340 // During commit from the main thread, invalidations can never be shared 282 CreateTile(key.first, key.second);
341 // with the active tree since the active tree has different content there.
342 // And when invalidating an active-tree tiling, it means there was no
343 // pending tiling to clone from.
344 const PictureLayerTiling* null_twin_tiling = nullptr;
345 PictureLayerTiling* null_recycled_twin = nullptr;
346 DCHECK_EQ(null_recycled_twin, client_->GetRecycledTwinTiling(this));
347 for (size_t i = 0; i < new_tile_keys.size(); ++i) {
348 CreateTile(new_tile_keys[i].first, new_tile_keys[i].second,
349 null_twin_tiling, null_recycled_twin);
350 }
351 }
352 } 283 }
353 284
354 void PictureLayerTiling::SetRasterSourceOnTiles() { 285 bool PictureLayerTiling::ShouldCreateTileAt(int i, int j) const {
355 // Shared (ie. non-invalidated) tiles on the pending tree are updated to use 286 // Active tree should always create a tile. The reason for this is that active
356 // the new raster source. When this raster source is activated, the raster 287 // tree represents content that we draw on screen, which means that whenever
357 // source will remain valid for shared tiles in the active tree. 288 // we check whether a tile should exist somewhere, the answer is yes. This
358 for (TileMap::const_iterator it = tiles_.begin(); it != tiles_.end(); ++it) 289 // doesn't mean it will actually be created (if raster source doesn't cover
359 it->second->set_raster_source(raster_source_); 290 // the tile for instance). Pending tree, on the other hand, should only be
360 VerifyLiveTilesRect(false); 291 // creating tiles that are different from the current active tree, which is
292 // represented by the logic in the rest of the function.
293 if (client_->GetTree() == ACTIVE_TREE)
294 return true;
295
296 // If the pending tree has no active twin, then it needs to create all tiles.
297 const PictureLayerTiling* active_twin =
298 client_->GetPendingOrActiveTwinTiling(this);
299 if (!active_twin)
300 return true;
301
302 // Pending tree will override the entire active tree if indices don't match.
303 if (!TilingMatchesTileIndices(active_twin))
304 return true;
305
306 gfx::Rect paint_rect = tiling_data_.TileBoundsWithBorder(i, j);
307 gfx::Rect tile_rect = paint_rect;
308 tile_rect.set_size(tiling_data_.max_texture_size());
309
310 // If the active tree can't create a tile, because of its raster source, then
311 // the pending tree should create one.
312 if (!active_twin->raster_source()->CoversRect(tile_rect, contents_scale()))
313 return true;
314
315 const Region* layer_invalidation = client_->GetPendingInvalidation();
316 gfx::Rect layer_rect =
317 gfx::ScaleToEnclosingRect(tile_rect, 1.f / contents_scale());
318
319 // If this tile is invalidated, then the pending tree should create one.
320 if (layer_invalidation && layer_invalidation->Intersects(layer_rect))
321 return true;
322
323 // If the active tree doesn't have a tile here, but it's in the pending tree's
324 // visible rect, then the pending tree should create a tile. This can happen
325 // if the pending visible rect is outside of the active tree's live tiles
326 // rect. In those situations, we need to block activation until we're ready to
327 // display content, which will have to come from the pending tree.
328 if (!active_twin->TileAt(i, j) && current_visible_rect_.Intersects(tile_rect))
329 return true;
330
331 // In all other cases, the pending tree doesn't need to create a tile.
332 return false;
333 }
334
335 bool PictureLayerTiling::TilingMatchesTileIndices(
336 const PictureLayerTiling* twin) const {
337 return tiling_data_.max_texture_size() ==
338 twin->tiling_data_.max_texture_size();
361 } 339 }
362 340
363 PictureLayerTiling::CoverageIterator::CoverageIterator() 341 PictureLayerTiling::CoverageIterator::CoverageIterator()
364 : tiling_(NULL), 342 : tiling_(NULL),
365 current_tile_(NULL), 343 current_tile_(NULL),
366 tile_i_(0), 344 tile_i_(0),
367 tile_j_(0), 345 tile_j_(0),
368 left_(0), 346 left_(0),
369 top_(0), 347 top_(0),
370 right_(-1), 348 right_(-1),
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 texture_rect.Scale(dest_to_content_scale_, 470 texture_rect.Scale(dest_to_content_scale_,
493 dest_to_content_scale_); 471 dest_to_content_scale_);
494 texture_rect.Intersect(gfx::Rect(tiling_->tiling_size())); 472 texture_rect.Intersect(gfx::Rect(tiling_->tiling_size()));
495 if (texture_rect.IsEmpty()) 473 if (texture_rect.IsEmpty())
496 return texture_rect; 474 return texture_rect;
497 texture_rect.Offset(-tex_origin.OffsetFromOrigin()); 475 texture_rect.Offset(-tex_origin.OffsetFromOrigin());
498 476
499 return texture_rect; 477 return texture_rect;
500 } 478 }
501 479
502 bool PictureLayerTiling::RemoveTileAt(int i, 480 bool PictureLayerTiling::RemoveTileAt(int i, int j) {
503 int j,
504 PictureLayerTiling* recycled_twin) {
505 TileMap::iterator found = tiles_.find(TileMapKey(i, j)); 481 TileMap::iterator found = tiles_.find(TileMapKey(i, j));
506 if (found == tiles_.end()) 482 if (found == tiles_.end())
507 return false; 483 return false;
508 found->second->set_shared(false);
509 tiles_.erase(found); 484 tiles_.erase(found);
510 if (recycled_twin) {
511 // Recycled twin does not also have a recycled twin, so pass null.
512 recycled_twin->RemoveTileAt(i, j, nullptr);
513 }
514 return true; 485 return true;
515 } 486 }
516 487
517 void PictureLayerTiling::Reset() { 488 void PictureLayerTiling::Reset() {
518 live_tiles_rect_ = gfx::Rect(); 489 live_tiles_rect_ = gfx::Rect();
519 PictureLayerTiling* recycled_twin = client_->GetRecycledTwinTiling(this);
520 for (TileMap::const_iterator it = tiles_.begin(); it != tiles_.end(); ++it) {
521 it->second->set_shared(false);
522 if (recycled_twin)
523 recycled_twin->RemoveTileAt(it->first.first, it->first.second, nullptr);
524 }
525 tiles_.clear(); 490 tiles_.clear();
526 } 491 }
527 492
528 gfx::Rect PictureLayerTiling::ComputeSkewport( 493 gfx::Rect PictureLayerTiling::ComputeSkewport(
529 double current_frame_time_in_seconds, 494 double current_frame_time_in_seconds,
530 const gfx::Rect& visible_rect_in_content_space) const { 495 const gfx::Rect& visible_rect_in_content_space) const {
531 gfx::Rect skewport = visible_rect_in_content_space; 496 gfx::Rect skewport = visible_rect_in_content_space;
532 if (skewport.IsEmpty()) 497 if (skewport.IsEmpty())
533 return skewport; 498 return skewport;
534 499
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 float content_to_screen_scale = ideal_contents_scale / contents_scale_; 589 float content_to_screen_scale = ideal_contents_scale / contents_scale_;
625 gfx::Rect soon_border_rect = visible_rect_in_content_space; 590 gfx::Rect soon_border_rect = visible_rect_in_content_space;
626 float border = CalculateSoonBorderDistance(visible_rect_in_content_space, 591 float border = CalculateSoonBorderDistance(visible_rect_in_content_space,
627 content_to_screen_scale); 592 content_to_screen_scale);
628 soon_border_rect.Inset(-border, -border, -border, -border); 593 soon_border_rect.Inset(-border, -border, -border, -border);
629 594
630 UpdateVisibleRectHistory(current_frame_time_in_seconds, 595 UpdateVisibleRectHistory(current_frame_time_in_seconds,
631 visible_rect_in_content_space); 596 visible_rect_in_content_space);
632 last_viewport_in_layer_space_ = viewport_in_layer_space; 597 last_viewport_in_layer_space_ = viewport_in_layer_space;
633 598
599 SetTilePriorityRects(content_to_screen_scale, visible_rect_in_content_space,
600 skewport, soon_border_rect, eventually_rect,
601 occlusion_in_layer_space);
634 SetLiveTilesRect(eventually_rect); 602 SetLiveTilesRect(eventually_rect);
635 UpdateTilePriorityRects(
636 content_to_screen_scale, visible_rect_in_content_space, skewport,
637 soon_border_rect, eventually_rect, occlusion_in_layer_space);
638 return true; 603 return true;
639 } 604 }
640 605
641 void PictureLayerTiling::UpdateTilePriorityRects( 606 void PictureLayerTiling::SetTilePriorityRects(
642 float content_to_screen_scale, 607 float content_to_screen_scale,
643 const gfx::Rect& visible_rect_in_content_space, 608 const gfx::Rect& visible_rect_in_content_space,
644 const gfx::Rect& skewport, 609 const gfx::Rect& skewport,
645 const gfx::Rect& soon_border_rect, 610 const gfx::Rect& soon_border_rect,
646 const gfx::Rect& eventually_rect, 611 const gfx::Rect& eventually_rect,
647 const Occlusion& occlusion_in_layer_space) { 612 const Occlusion& occlusion_in_layer_space) {
648 current_visible_rect_ = visible_rect_in_content_space; 613 current_visible_rect_ = visible_rect_in_content_space;
649 current_skewport_rect_ = skewport; 614 current_skewport_rect_ = skewport;
650 current_soon_border_rect_ = soon_border_rect; 615 current_soon_border_rect_ = soon_border_rect;
651 current_eventually_rect_ = eventually_rect; 616 current_eventually_rect_ = eventually_rect;
(...skipping 10 matching lines...) Expand all
662 627
663 void PictureLayerTiling::SetLiveTilesRect( 628 void PictureLayerTiling::SetLiveTilesRect(
664 const gfx::Rect& new_live_tiles_rect) { 629 const gfx::Rect& new_live_tiles_rect) {
665 DCHECK(new_live_tiles_rect.IsEmpty() || 630 DCHECK(new_live_tiles_rect.IsEmpty() ||
666 gfx::Rect(tiling_size()).Contains(new_live_tiles_rect)) 631 gfx::Rect(tiling_size()).Contains(new_live_tiles_rect))
667 << "tiling_size: " << tiling_size().ToString() 632 << "tiling_size: " << tiling_size().ToString()
668 << " new_live_tiles_rect: " << new_live_tiles_rect.ToString(); 633 << " new_live_tiles_rect: " << new_live_tiles_rect.ToString();
669 if (live_tiles_rect_ == new_live_tiles_rect) 634 if (live_tiles_rect_ == new_live_tiles_rect)
670 return; 635 return;
671 636
672 PictureLayerTiling* recycled_twin = client_->GetRecycledTwinTiling(this);
673
674 // Iterate to delete all tiles outside of our new live_tiles rect. 637 // Iterate to delete all tiles outside of our new live_tiles rect.
675 for (TilingData::DifferenceIterator iter(&tiling_data_, 638 for (TilingData::DifferenceIterator iter(&tiling_data_, live_tiles_rect_,
676 live_tiles_rect_,
677 new_live_tiles_rect); 639 new_live_tiles_rect);
678 iter; 640 iter; ++iter) {
679 ++iter) { 641 RemoveTileAt(iter.index_x(), iter.index_y());
680 RemoveTileAt(iter.index_x(), iter.index_y(), recycled_twin);
681 } 642 }
682 643
683 const PictureLayerTiling* twin_tiling =
684 client_->GetPendingOrActiveTwinTiling(this);
685
686 // Iterate to allocate new tiles for all regions with newly exposed area. 644 // Iterate to allocate new tiles for all regions with newly exposed area.
687 for (TilingData::DifferenceIterator iter(&tiling_data_, 645 for (TilingData::DifferenceIterator iter(&tiling_data_, new_live_tiles_rect,
688 new_live_tiles_rect,
689 live_tiles_rect_); 646 live_tiles_rect_);
690 iter; 647 iter; ++iter) {
691 ++iter) {
692 TileMapKey key(iter.index()); 648 TileMapKey key(iter.index());
693 CreateTile(key.first, key.second, twin_tiling, recycled_twin); 649 if (ShouldCreateTileAt(key.first, key.second))
650 CreateTile(key.first, key.second);
694 } 651 }
695 652
696 live_tiles_rect_ = new_live_tiles_rect; 653 live_tiles_rect_ = new_live_tiles_rect;
697 VerifyLiveTilesRect(false); 654 VerifyLiveTilesRect(false);
698 if (recycled_twin) {
699 recycled_twin->live_tiles_rect_ = live_tiles_rect_;
700 recycled_twin->VerifyLiveTilesRect(true);
701 }
702 } 655 }
703 656
704 void PictureLayerTiling::VerifyLiveTilesRect(bool is_on_recycle_tree) const { 657 void PictureLayerTiling::VerifyLiveTilesRect(bool is_on_recycle_tree) const {
705 #if DCHECK_IS_ON() 658 #if DCHECK_IS_ON()
706 for (auto it = tiles_.begin(); it != tiles_.end(); ++it) { 659 for (auto it = tiles_.begin(); it != tiles_.end(); ++it) {
707 if (!it->second.get()) 660 if (!it->second.get())
708 continue; 661 continue;
709 DCHECK(it->first.first < tiling_data_.num_tiles_x()) 662 DCHECK(it->first.first < tiling_data_.num_tiles_x())
710 << this << " " << it->first.first << "," << it->first.second 663 << this << " " << it->first.first << "," << it->first.second
711 << " num_tiles_x " << tiling_data_.num_tiles_x() << " live_tiles_rect " 664 << " num_tiles_x " << tiling_data_.num_tiles_x() << " live_tiles_rect "
712 << live_tiles_rect_.ToString(); 665 << live_tiles_rect_.ToString();
713 DCHECK(it->first.second < tiling_data_.num_tiles_y()) 666 DCHECK(it->first.second < tiling_data_.num_tiles_y())
714 << this << " " << it->first.first << "," << it->first.second 667 << this << " " << it->first.first << "," << it->first.second
715 << " num_tiles_y " << tiling_data_.num_tiles_y() << " live_tiles_rect " 668 << " num_tiles_y " << tiling_data_.num_tiles_y() << " live_tiles_rect "
716 << live_tiles_rect_.ToString(); 669 << live_tiles_rect_.ToString();
717 DCHECK(tiling_data_.TileBounds(it->first.first, it->first.second) 670 DCHECK(tiling_data_.TileBounds(it->first.first, it->first.second)
718 .Intersects(live_tiles_rect_)) 671 .Intersects(live_tiles_rect_))
719 << this << " " << it->first.first << "," << it->first.second 672 << this << " " << it->first.first << "," << it->first.second
720 << " tile bounds " 673 << " tile bounds "
721 << tiling_data_.TileBounds(it->first.first, it->first.second).ToString() 674 << tiling_data_.TileBounds(it->first.first, it->first.second).ToString()
722 << " live_tiles_rect " << live_tiles_rect_.ToString(); 675 << " live_tiles_rect " << live_tiles_rect_.ToString();
723 DCHECK_IMPLIES(is_on_recycle_tree, it->second->is_shared());
724 } 676 }
725 #endif 677 #endif
726 } 678 }
727 679
728 bool PictureLayerTiling::IsTileOccluded(const Tile* tile) const { 680 bool PictureLayerTiling::IsTileOccluded(const Tile* tile) const {
729 DCHECK(tile); 681 // If this tile is not occluded on this tree, then it is not occluded.
682 if (!IsTileOccludedOnCurrentTree(tile))
683 return false;
730 684
685 // Otherwise, if this is the pending tree, we're done and the tile is
686 // occluded.
687 if (client_->GetTree() == PENDING_TREE)
688 return true;
689
690 // On the active tree however, we need to check if this tile will be
691 // unoccluded upon activation, in which case it has to be considered
692 // unoccluded.
693 const PictureLayerTiling* pending_twin =
694 client_->GetPendingOrActiveTwinTiling(this);
695 if (pending_twin) {
696 // If there's a pending tile in the same position. Or if the pending twin
697 // would have to be creating all tiles, then we don't need to worry about
698 // occlusion on the twin.
699 if (!TilingMatchesTileIndices(pending_twin) ||
700 pending_twin->TileAt(tile->tiling_i_index(), tile->tiling_j_index())) {
701 return true;
702 }
703 return pending_twin->IsTileOccludedOnCurrentTree(tile);
704 }
705 return true;
706 }
707
708 bool PictureLayerTiling::IsTileOccludedOnCurrentTree(const Tile* tile) const {
731 if (!current_occlusion_in_layer_space_.HasOcclusion()) 709 if (!current_occlusion_in_layer_space_.HasOcclusion())
732 return false; 710 return false;
733
734 gfx::Rect tile_query_rect = 711 gfx::Rect tile_query_rect =
735 gfx::IntersectRects(tile->content_rect(), current_visible_rect_); 712 gfx::IntersectRects(tile->content_rect(), current_visible_rect_);
736
737 // Explicitly check if the tile is outside the viewport. If so, we need to 713 // Explicitly check if the tile is outside the viewport. If so, we need to
738 // return false, since occlusion for this tile is unknown. 714 // return false, since occlusion for this tile is unknown.
739 // TODO(vmpstr): Since the current visible rect is really a viewport in
740 // layer space, we should probably clip tile query rect to tiling bounds
741 // or live tiles rect.
742 if (tile_query_rect.IsEmpty()) 715 if (tile_query_rect.IsEmpty())
743 return false; 716 return false;
744 717
745 if (contents_scale_ != 1.f) { 718 if (contents_scale_ != 1.f) {
746 tile_query_rect = 719 tile_query_rect =
747 gfx::ScaleToEnclosingRect(tile_query_rect, 1.0f / contents_scale_); 720 gfx::ScaleToEnclosingRect(tile_query_rect, 1.f / contents_scale_);
748 } 721 }
749
750 return current_occlusion_in_layer_space_.IsOccluded(tile_query_rect); 722 return current_occlusion_in_layer_space_.IsOccluded(tile_query_rect);
751 } 723 }
752 724
753 bool PictureLayerTiling::IsTileRequiredForActivationIfVisible( 725 bool PictureLayerTiling::IsTileRequiredForActivation(const Tile* tile) const {
754 const Tile* tile) const { 726 if (client_->GetTree() == PENDING_TREE) {
755 DCHECK_EQ(PENDING_TREE, client_->GetTree()); 727 if (!can_require_tiles_for_activation_)
728 return false;
756 729
757 // This function assumes that the tile is visible (i.e. in the viewport). The 730 if (resolution_ != HIGH_RESOLUTION)
758 // caller needs to make sure that this condition is met to ensure we don't 731 return false;
759 // block activation on tiles outside of the viewport.
760 732
761 // If we are not allowed to mark tiles as required for activation, then don't 733 if (IsTileOccluded(tile))
762 // do it. 734 return false;
763 if (!can_require_tiles_for_activation_) 735
736 bool tile_is_visible =
737 tile->content_rect().Intersects(current_visible_rect_);
738 if (!tile_is_visible)
739 return false;
740
741 if (client_->RequiresHighResToDraw())
742 return true;
743
744 const PictureLayerTiling* active_twin =
745 client_->GetPendingOrActiveTwinTiling(this);
746 if (!active_twin || !TilingMatchesTileIndices(active_twin))
747 return true;
748
749 if (active_twin->raster_source()->GetSize() != raster_source()->GetSize())
750 return true;
751
752 if (active_twin->current_visible_rect_ != current_visible_rect_)
753 return true;
754
755 Tile* twin_tile =
756 active_twin->TileAt(tile->tiling_i_index(), tile->tiling_j_index());
757 if (!twin_tile)
758 return false;
759 return true;
760 }
761
762 DCHECK(client_->GetTree() == ACTIVE_TREE);
763 const PictureLayerTiling* pending_twin =
764 client_->GetPendingOrActiveTwinTiling(this);
765 // If we don't have a pending tree, or the pending tree will overwrite the
766 // given tile, then it is not required for activation.
767 if (!pending_twin || !TilingMatchesTileIndices(pending_twin) ||
768 pending_twin->TileAt(tile->tiling_i_index(), tile->tiling_j_index())) {
769 return false;
770 }
771 // Otherwise, ask the pending twin if this tile is required for activation.
772 return pending_twin->IsTileRequiredForActivation(tile);
773 }
774
775 bool PictureLayerTiling::IsTileRequiredForDraw(const Tile* tile) const {
776 if (client_->GetTree() == PENDING_TREE)
764 return false; 777 return false;
765 778
766 if (resolution_ != HIGH_RESOLUTION) 779 if (resolution_ != HIGH_RESOLUTION)
767 return false; 780 return false;
768 781
769 if (IsTileOccluded(tile)) 782 bool tile_is_visible = current_visible_rect_.Intersects(tile->content_rect());
783 if (!tile_is_visible)
770 return false; 784 return false;
771 785
772 if (client_->RequiresHighResToDraw()) 786 if (IsTileOccludedOnCurrentTree(tile))
773 return true;
774
775 const PictureLayerTiling* twin_tiling =
776 client_->GetPendingOrActiveTwinTiling(this);
777 if (!twin_tiling)
778 return true;
779
780 if (twin_tiling->raster_source()->GetSize() != raster_source()->GetSize())
781 return true;
782
783 if (twin_tiling->current_visible_rect_ != current_visible_rect_)
784 return true;
785
786 Tile* twin_tile =
787 twin_tiling->TileAt(tile->tiling_i_index(), tile->tiling_j_index());
788 // If twin tile is missing, it might not have a recording, so we don't need
789 // this tile to be required for activation.
790 if (!twin_tile)
791 return false; 787 return false;
792
793 return true;
794 }
795
796 bool PictureLayerTiling::IsTileRequiredForDrawIfVisible(
797 const Tile* tile) const {
798 DCHECK_EQ(ACTIVE_TREE, client_->GetTree());
799
800 // This function assumes that the tile is visible (i.e. in the viewport).
801
802 if (resolution_ != HIGH_RESOLUTION)
803 return false;
804
805 if (IsTileOccluded(tile))
806 return false;
807
808 return true; 788 return true;
809 } 789 }
810 790
811 void PictureLayerTiling::UpdateTileAndTwinPriority(Tile* tile) const { 791 void PictureLayerTiling::UpdateTileAndTwinPriority(Tile* tile) const {
812 WhichTree tree = client_->GetTree(); 792 tile->set_priority(ComputePriorityForTile(tile));
813 WhichTree twin_tree = tree == ACTIVE_TREE ? PENDING_TREE : ACTIVE_TREE; 793 tile->set_is_occluded(IsTileOccluded(tile));
814 794 tile->set_required_for_activation(IsTileRequiredForActivation(tile));
815 tile->SetPriority(tree, ComputePriorityForTile(tile)); 795 tile->set_required_for_draw(IsTileRequiredForDraw(tile));
816 UpdateRequiredStateForTile(tile, tree);
817
818 const PictureLayerTiling* twin_tiling =
819 client_->GetPendingOrActiveTwinTiling(this);
820 if (!tile->is_shared() || !twin_tiling) {
821 tile->SetPriority(twin_tree, TilePriority());
822 tile->set_is_occluded(twin_tree, false);
823 if (twin_tree == PENDING_TREE)
824 tile->set_required_for_activation(false);
825 else
826 tile->set_required_for_draw(false);
827 return;
828 }
829
830 tile->SetPriority(twin_tree, twin_tiling->ComputePriorityForTile(tile));
831 twin_tiling->UpdateRequiredStateForTile(tile, twin_tree);
832 }
833
834 void PictureLayerTiling::UpdateRequiredStateForTile(Tile* tile,
835 WhichTree tree) const {
836 if (tile->priority(tree).priority_bin == TilePriority::NOW) {
837 if (tree == PENDING_TREE) {
838 tile->set_required_for_activation(
839 IsTileRequiredForActivationIfVisible(tile));
840 } else {
841 tile->set_required_for_draw(IsTileRequiredForDrawIfVisible(tile));
842 }
843 tile->set_is_occluded(tree, IsTileOccluded(tile));
844 return;
845 }
846
847 // Non-NOW bin tiles are not required or occluded.
848 if (tree == PENDING_TREE)
849 tile->set_required_for_activation(false);
850 else
851 tile->set_required_for_draw(false);
852 tile->set_is_occluded(tree, false);
853 } 796 }
854 797
855 void PictureLayerTiling::VerifyAllTilesHaveCurrentRasterSource() const { 798 void PictureLayerTiling::VerifyAllTilesHaveCurrentRasterSource() const {
856 #if DCHECK_IS_ON() 799 #if DCHECK_IS_ON()
857 for (const auto& tile_pair : tiles_) 800 for (const auto& tile_pair : tiles_)
858 DCHECK_EQ(raster_source_.get(), tile_pair.second->raster_source()); 801 DCHECK_EQ(raster_source_.get(), tile_pair.second->raster_source());
859 #endif 802 #endif
860 } 803 }
861 804
862 TilePriority PictureLayerTiling::ComputePriorityForTile( 805 TilePriority PictureLayerTiling::ComputePriorityForTile(
863 const Tile* tile) const { 806 const Tile* tile) const {
864 // TODO(vmpstr): See if this can be moved to iterators. 807 // TODO(vmpstr): See if this can be moved to iterators.
865 TilePriority::PriorityBin max_tile_priority_bin = 808 TilePriority::PriorityBin max_tile_priority_bin =
866 client_->GetMaxTilePriorityBin(); 809 client_->GetMaxTilePriorityBin();
867 810
868 DCHECK_EQ(TileAt(tile->tiling_i_index(), tile->tiling_j_index()), tile); 811 DCHECK_EQ(TileAt(tile->tiling_i_index(), tile->tiling_j_index()), tile);
869 gfx::Rect tile_bounds = 812 gfx::Rect tile_bounds =
870 tiling_data_.TileBounds(tile->tiling_i_index(), tile->tiling_j_index()); 813 tiling_data_.TileBounds(tile->tiling_i_index(), tile->tiling_j_index());
871 814
872 if (max_tile_priority_bin <= TilePriority::NOW && 815 if (max_tile_priority_bin <= TilePriority::NOW &&
873 current_visible_rect_.Intersects(tile_bounds)) { 816 current_visible_rect_.Intersects(tile_bounds)) {
874 return TilePriority(resolution_, TilePriority::NOW, 0); 817 return TilePriority(resolution_, TilePriority::NOW, 0);
875 } 818 }
876 819
820 if (max_tile_priority_bin <= TilePriority::SOON &&
821 pending_visible_rect().Intersects(tile_bounds)) {
822 return TilePriority(resolution_, TilePriority::SOON, 0);
823 }
824
877 DCHECK_GT(current_content_to_screen_scale_, 0.f); 825 DCHECK_GT(current_content_to_screen_scale_, 0.f);
878 float distance_to_visible = 826 float distance_to_visible =
879 current_visible_rect_.ManhattanInternalDistance(tile_bounds) * 827 current_visible_rect_.ManhattanInternalDistance(tile_bounds) *
880 current_content_to_screen_scale_; 828 current_content_to_screen_scale_;
881 829
882 if (max_tile_priority_bin <= TilePriority::SOON && 830 if (max_tile_priority_bin <= TilePriority::SOON &&
883 (current_soon_border_rect_.Intersects(tile_bounds) || 831 (current_soon_border_rect_.Intersects(tile_bounds) ||
884 current_skewport_rect_.Intersects(tile_bounds))) { 832 current_skewport_rect_.Intersects(tile_bounds))) {
885 return TilePriority(resolution_, TilePriority::SOON, distance_to_visible); 833 return TilePriority(resolution_, TilePriority::SOON, distance_to_visible);
886 } 834 }
887 835
888 return TilePriority(resolution_, TilePriority::EVENTUALLY, 836 return TilePriority(resolution_, TilePriority::EVENTUALLY,
889 distance_to_visible); 837 distance_to_visible);
890 } 838 }
891 839
892 void PictureLayerTiling::GetAllTilesAndPrioritiesForTracing( 840 void PictureLayerTiling::GetAllTilesAndPrioritiesForTracing(
893 std::map<const Tile*, TilePriority>* tile_map) const { 841 std::map<const Tile*, TilePriority>* tile_map) const {
894 const PictureLayerTiling* twin_tiling =
895 client_->GetPendingOrActiveTwinTiling(this);
896 for (const auto& tile_pair : tiles_) { 842 for (const auto& tile_pair : tiles_) {
897 const Tile* tile = tile_pair.second.get(); 843 const Tile* tile = tile_pair.second.get();
898 const TilePriority& priority = ComputePriorityForTile(tile); 844 const TilePriority& priority = ComputePriorityForTile(tile);
899 // If the tile is shared, it means the twin also has the same tile.
900 // Otherwise, use the default priority.
901 const TilePriority& twin_priority =
902 (twin_tiling && tile->is_shared())
903 ? twin_tiling->ComputePriorityForTile(tile)
904 : TilePriority();
905
906 // Store combined priority. 845 // Store combined priority.
907 (*tile_map)[tile] = TilePriority(priority, twin_priority); 846 (*tile_map)[tile] = priority;
908 } 847 }
909 } 848 }
910 849
911 void PictureLayerTiling::AsValueInto( 850 void PictureLayerTiling::AsValueInto(
912 base::trace_event::TracedValue* state) const { 851 base::trace_event::TracedValue* state) const {
913 state->SetInteger("num_tiles", tiles_.size()); 852 state->SetInteger("num_tiles", tiles_.size());
914 state->SetDouble("content_scale", contents_scale_); 853 state->SetDouble("content_scale", contents_scale_);
915 MathUtil::AddToTracedValue("visible_rect", current_visible_rect_, state); 854 MathUtil::AddToTracedValue("visible_rect", current_visible_rect_, state);
916 MathUtil::AddToTracedValue("skewport_rect", current_skewport_rect_, state); 855 MathUtil::AddToTracedValue("skewport_rect", current_skewport_rect_, state);
917 MathUtil::AddToTracedValue("soon_rect", current_soon_border_rect_, state); 856 MathUtil::AddToTracedValue("soon_rect", current_soon_border_rect_, state);
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
1074 break; 1013 break;
1075 } 1014 }
1076 1015
1077 gfx::Rect result(origin_x, origin_y, width, height); 1016 gfx::Rect result(origin_x, origin_y, width, height);
1078 if (cache) 1017 if (cache)
1079 cache->previous_result = result; 1018 cache->previous_result = result;
1080 return result; 1019 return result;
1081 } 1020 }
1082 1021
1083 } // namespace cc 1022 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698