OLD | NEW |
---|---|
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 Loading... | |
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_ |
OLD | NEW |