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

Unified Diff: cc/resources/raster_tile_priority_queue.h

Issue 541843002: cc: Optimise shared raster tile handling in raster tile priority queue. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restored dropped final break. Created 6 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
Index: cc/resources/raster_tile_priority_queue.h
diff --git a/cc/resources/raster_tile_priority_queue.h b/cc/resources/raster_tile_priority_queue.h
index bbfaafddef383a9e9f1e95a8f8815e8c26a8dfbd..3bca52babba391640bf62d43a48ca68a27b19041 100644
--- a/cc/resources/raster_tile_priority_queue.h
+++ b/cc/resources/raster_tile_priority_queue.h
@@ -30,9 +30,12 @@ class CC_EXPORT RasterTilePriorityQueue {
PictureLayerImpl::LayerRasterTileIterator active_iterator;
PictureLayerImpl::LayerRasterTileIterator pending_iterator;
+ bool has_both_layers;
+#if DCHECK_IS_ON
reveman 2014/09/05 17:08:32 It would be better to always compile this so that
USE eero AT chromium.org 2014/09/08 14:08:17 Done.
// TODO(vmpstr): Investigate removing this.
reveman 2014/09/05 17:08:32 This TODO is not valid anymore, right? How about w
USE eero AT chromium.org 2014/09/08 14:08:17 Done.
std::vector<Tile*> returned_shared_tiles;
reveman 2014/09/05 17:08:32 Now that this is only used for debug checks, can w
USE eero AT chromium.org 2014/09/08 14:08:17 Yes, consumes more memory than std::vector but com
+#endif
};
RasterTilePriorityQueue();
« no previous file with comments | « no previous file | cc/resources/raster_tile_priority_queue.cc » ('j') | cc/resources/raster_tile_priority_queue.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698