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

Unified Diff: cc/tiles/prioritized_tile.cc

Issue 2317913002: cc: Change preraster/predecode split to be half of max skewport extent. (Closed)
Patch Set: compile fix Created 4 years, 3 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/tiles/prioritized_tile.h ('k') | cc/tiles/tile_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tiles/prioritized_tile.cc
diff --git a/cc/tiles/prioritized_tile.cc b/cc/tiles/prioritized_tile.cc
index 526138bd8d1d37ee839204f8d81975e202768b36..37da3a98182406af088206e544bb6e644bc11c81 100644
--- a/cc/tiles/prioritized_tile.cc
+++ b/cc/tiles/prioritized_tile.cc
@@ -14,11 +14,13 @@ PrioritizedTile::PrioritizedTile() = default;
PrioritizedTile::PrioritizedTile(Tile* tile,
const PictureLayerTiling* source_tiling,
const TilePriority priority,
- bool is_occluded)
+ bool is_occluded,
+ bool is_process_for_images_only)
: tile_(tile),
source_tiling_(source_tiling),
priority_(priority),
- is_occluded_(is_occluded) {}
+ is_occluded_(is_occluded),
+ is_process_for_images_only_(is_process_for_images_only) {}
PrioritizedTile::~PrioritizedTile() = default;
« no previous file with comments | « cc/tiles/prioritized_tile.h ('k') | cc/tiles/tile_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698