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

Unified Diff: cc/layers/picture_layer_impl.cc

Issue 1197423003: Remaining code for basic tile compression functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable tile compression for one copy Created 5 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
Index: cc/layers/picture_layer_impl.cc
diff --git a/cc/layers/picture_layer_impl.cc b/cc/layers/picture_layer_impl.cc
index 82ae6fc27a0df0b1213c461589b572dc716111af..accd4058523cd489024bf039ef886dae425a4cad 100644
--- a/cc/layers/picture_layer_impl.cc
+++ b/cc/layers/picture_layer_impl.cc
@@ -638,6 +638,9 @@ ScopedTilePtr PictureLayerImpl::CreateTile(float contents_scale,
if (!is_mask_)
flags = Tile::USE_PICTURE_ANALYSIS;
+ if (contents_opaque())
+ flags |= Tile::IS_OPAQUE;
+
return layer_tree_impl()->tile_manager()->CreateTile(
content_rect.size(), content_rect, contents_scale, id(),
layer_tree_impl()->source_frame_number(), flags);

Powered by Google App Engine
This is Rietveld 408576698