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

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: Stop special casing the same tile case. 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..0f384d72ff12403cc1239ff5c2e51cfecfbdd639 100644
--- a/cc/resources/raster_tile_priority_queue.h
+++ b/cc/resources/raster_tile_priority_queue.h
@@ -5,6 +5,7 @@
#ifndef CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_
#define CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_
+#include <set>
#include <utility>
#include <vector>
@@ -27,12 +28,15 @@ class CC_EXPORT RasterTilePriorityQueue {
void Pop(TreePriority tree_priority);
WhichTree NextTileIteratorTree(TreePriority tree_priority) const;
+ WhichTree PrimarySharedTileTree(TreePriority tree_priority,
+ const Tile* tile) const;
PictureLayerImpl::LayerRasterTileIterator active_iterator;
PictureLayerImpl::LayerRasterTileIterator pending_iterator;
+ bool has_both_layers;
- // TODO(vmpstr): Investigate removing this.
- std::vector<Tile*> returned_shared_tiles;
+ // Set of returned tiles (excluding the current one) for DCHECKing.
+ std::set<const Tile*> returned_tiles_for_debug;
};
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