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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_ 5 #ifndef CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_
6 #define CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_ 6 #define CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_
7 7
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 12 matching lines...) Expand all
23 ~PairedPictureLayerQueue(); 23 ~PairedPictureLayerQueue();
24 24
25 bool IsEmpty() const; 25 bool IsEmpty() const;
26 Tile* Top(TreePriority tree_priority); 26 Tile* Top(TreePriority tree_priority);
27 void Pop(TreePriority tree_priority); 27 void Pop(TreePriority tree_priority);
28 28
29 WhichTree NextTileIteratorTree(TreePriority tree_priority) const; 29 WhichTree NextTileIteratorTree(TreePriority tree_priority) const;
30 30
31 PictureLayerImpl::LayerRasterTileIterator active_iterator; 31 PictureLayerImpl::LayerRasterTileIterator active_iterator;
32 PictureLayerImpl::LayerRasterTileIterator pending_iterator; 32 PictureLayerImpl::LayerRasterTileIterator pending_iterator;
33 bool has_both_layers;
33 34
35 #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.
34 // TODO(vmpstr): Investigate removing this. 36 // 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.
35 std::vector<Tile*> returned_shared_tiles; 37 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
38 #endif
36 }; 39 };
37 40
38 RasterTilePriorityQueue(); 41 RasterTilePriorityQueue();
39 ~RasterTilePriorityQueue(); 42 ~RasterTilePriorityQueue();
40 43
41 void Build(const std::vector<PictureLayerImpl::Pair>& paired_layers, 44 void Build(const std::vector<PictureLayerImpl::Pair>& paired_layers,
42 TreePriority tree_priority); 45 TreePriority tree_priority);
43 void Reset(); 46 void Reset();
44 47
45 bool IsEmpty() const; 48 bool IsEmpty() const;
46 Tile* Top(); 49 Tile* Top();
47 void Pop(); 50 void Pop();
48 51
49 private: 52 private:
50 // TODO(vmpstr): This is potentially unnecessary if it becomes the case that 53 // TODO(vmpstr): This is potentially unnecessary if it becomes the case that
51 // PairedPictureLayerQueue is fast enough to copy. In that case, we can use 54 // PairedPictureLayerQueue is fast enough to copy. In that case, we can use
52 // objects directly (ie std::vector<PairedPictureLayerQueue>. 55 // objects directly (ie std::vector<PairedPictureLayerQueue>.
53 ScopedPtrVector<PairedPictureLayerQueue> paired_queues_; 56 ScopedPtrVector<PairedPictureLayerQueue> paired_queues_;
54 TreePriority tree_priority_; 57 TreePriority tree_priority_;
55 58
56 DISALLOW_COPY_AND_ASSIGN(RasterTilePriorityQueue); 59 DISALLOW_COPY_AND_ASSIGN(RasterTilePriorityQueue);
57 }; 60 };
58 61
59 } // namespace cc 62 } // namespace cc
60 63
61 #endif // CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_ 64 #endif // CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_H_
OLDNEW
« 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