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

Side by Side Diff: cc/resources/raster_tile_priority_queue_all.h

Issue 900073003: cc: Rework how picture layer tiling set gets into raster queues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed unrelated changes Created 5 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_ALL_H_ 5 #ifndef CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_ALL_H_
6 #define CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_ALL_H_ 6 #define CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_ALL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/containers/hash_tables.h"
12 #include "cc/base/cc_export.h" 13 #include "cc/base/cc_export.h"
13 #include "cc/layers/picture_layer_impl.h" 14 #include "cc/layers/picture_layer_impl.h"
14 #include "cc/resources/raster_tile_priority_queue.h" 15 #include "cc/resources/raster_tile_priority_queue.h"
15 #include "cc/resources/tile_priority.h" 16 #include "cc/resources/tile_priority.h"
16 #include "cc/resources/tiling_set_raster_queue_all.h" 17 #include "cc/resources/tiling_set_raster_queue_all.h"
17 18
18 namespace cc { 19 namespace cc {
19 20
20 class CC_EXPORT RasterTilePriorityQueueAll : public RasterTilePriorityQueue { 21 class CC_EXPORT RasterTilePriorityQueueAll : public RasterTilePriorityQueue {
21 public: 22 public:
22 class PairedTilingSetQueue { 23 class PairedTilingSetQueue {
23 public: 24 public:
24 PairedTilingSetQueue(); 25 PairedTilingSetQueue();
25 PairedTilingSetQueue(const PictureLayerImpl::Pair& layer_pair, 26 PairedTilingSetQueue(PictureLayerTilingSet* active,
27 PictureLayerTilingSet* pending,
26 TreePriority tree_priority); 28 TreePriority tree_priority);
27 ~PairedTilingSetQueue(); 29 ~PairedTilingSetQueue();
28 30
29 bool IsEmpty() const; 31 bool IsEmpty() const;
30 Tile* Top(TreePriority tree_priority); 32 Tile* Top(TreePriority tree_priority);
31 void Pop(TreePriority tree_priority); 33 void Pop(TreePriority tree_priority);
32 34
33 WhichTree NextTileIteratorTree(TreePriority tree_priority) const; 35 WhichTree NextTileIteratorTree(TreePriority tree_priority) const;
34 void SkipTilesReturnedByTwin(TreePriority tree_priority); 36 void SkipTilesReturnedByTwin(TreePriority tree_priority);
35 37
36 scoped_refptr<base::debug::ConvertableToTraceFormat> StateAsValue() const; 38 scoped_refptr<base::debug::ConvertableToTraceFormat> StateAsValue() const;
37 39
38 const TilingSetRasterQueueAll* active_queue() const { 40 const TilingSetRasterQueueAll* active_queue() const {
39 return active_queue_.get(); 41 return active_queue_.get();
40 } 42 }
41 const TilingSetRasterQueueAll* pending_queue() const { 43 const TilingSetRasterQueueAll* pending_queue() const {
42 return pending_queue_.get(); 44 return pending_queue_.get();
43 } 45 }
44 46
45 private: 47 private:
46 scoped_ptr<TilingSetRasterQueueAll> active_queue_; 48 scoped_ptr<TilingSetRasterQueueAll> active_queue_;
47 scoped_ptr<TilingSetRasterQueueAll> pending_queue_; 49 scoped_ptr<TilingSetRasterQueueAll> pending_queue_;
48 bool has_both_layers_; 50 bool has_both_tiling_sets_;
49 51
50 // Set of returned tiles (excluding the current one) for DCHECKing. 52 // Set of returned tiles (excluding the current one) for DCHECKing.
51 std::set<const Tile*> returned_tiles_for_debug_; 53 std::set<const Tile*> returned_tiles_for_debug_;
52 }; 54 };
53 55
54 RasterTilePriorityQueueAll(); 56 RasterTilePriorityQueueAll();
55 ~RasterTilePriorityQueueAll() override; 57 ~RasterTilePriorityQueueAll() override;
56 58
57 bool IsEmpty() const override; 59 bool IsEmpty() const override;
58 Tile* Top() override; 60 Tile* Top() override;
59 void Pop() override; 61 void Pop() override;
60 62
61 private: 63 private:
62 friend class RasterTilePriorityQueue; 64 friend class RasterTilePriorityQueue;
63 65
64 void Build(const std::vector<PictureLayerImpl::Pair>& paired_layers, 66 void Build(const base::hash_map<int, PictureLayerTilingSet::Pair>&
67 paired_picture_layer_tiling_sets,
68 bool has_pending_tree,
65 TreePriority tree_priority); 69 TreePriority tree_priority);
66 70
67 // TODO(vmpstr): This is potentially unnecessary if it becomes the case that 71 // TODO(vmpstr): This is potentially unnecessary if it becomes the case that
68 // PairedTilingSetQueue is fast enough to copy. In that case, we can use 72 // PairedTilingSetQueue is fast enough to copy. In that case, we can use
69 // objects directly (ie std::vector<PairedTilingSetQueue>. 73 // objects directly (ie std::vector<PairedTilingSetQueue>.
70 ScopedPtrVector<PairedTilingSetQueue> paired_queues_; 74 ScopedPtrVector<PairedTilingSetQueue> paired_queues_;
71 TreePriority tree_priority_; 75 TreePriority tree_priority_;
72 76
73 DISALLOW_COPY_AND_ASSIGN(RasterTilePriorityQueueAll); 77 DISALLOW_COPY_AND_ASSIGN(RasterTilePriorityQueueAll);
74 }; 78 };
75 79
76 } // namespace cc 80 } // namespace cc
77 81
78 #endif // CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_ALL_H_ 82 #endif // CC_RESOURCES_RASTER_TILE_PRIORITY_QUEUE_ALL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698