OLD | NEW |
---|---|
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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_TREES_LAYER_TREE_IMPL_H_ | 5 #ifndef CC_TREES_LAYER_TREE_IMPL_H_ |
6 #define CC_TREES_LAYER_TREE_IMPL_H_ | 6 #define CC_TREES_LAYER_TREE_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/containers/hash_tables.h" | 12 #include "base/containers/hash_tables.h" |
13 #include "base/memory/scoped_vector.h" | |
13 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "cc/base/swap_promise.h" | |
14 #include "cc/layers/layer_impl.h" | 16 #include "cc/layers/layer_impl.h" |
15 #include "cc/resources/ui_resource_client.h" | 17 #include "cc/resources/ui_resource_client.h" |
16 #include "ui/events/latency_info.h" | 18 #include "ui/events/latency_info.h" |
17 | 19 |
18 #if defined(COMPILER_GCC) | 20 #if defined(COMPILER_GCC) |
19 namespace BASE_HASH_NAMESPACE { | 21 namespace BASE_HASH_NAMESPACE { |
20 template<> | 22 template<> |
21 struct hash<cc::LayerImpl*> { | 23 struct hash<cc::LayerImpl*> { |
22 size_t operator()(cc::LayerImpl* ptr) const { | 24 size_t operator()(cc::LayerImpl* ptr) const { |
23 return hash<size_t>()(reinterpret_cast<size_t>(ptr)); | 25 return hash<size_t>()(reinterpret_cast<size_t>(ptr)); |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
202 // Useful for debug assertions, probably shouldn't be used for anything else. | 204 // Useful for debug assertions, probably shouldn't be used for anything else. |
203 Proxy* proxy() const; | 205 Proxy* proxy() const; |
204 | 206 |
205 void SetRootLayerScrollOffsetDelegate( | 207 void SetRootLayerScrollOffsetDelegate( |
206 LayerScrollOffsetDelegate* root_layer_scroll_offset_delegate); | 208 LayerScrollOffsetDelegate* root_layer_scroll_offset_delegate); |
207 | 209 |
208 void SetLatencyInfo(const ui::LatencyInfo& latency_info); | 210 void SetLatencyInfo(const ui::LatencyInfo& latency_info); |
209 const ui::LatencyInfo& GetLatencyInfo(); | 211 const ui::LatencyInfo& GetLatencyInfo(); |
210 void ClearLatencyInfo(); | 212 void ClearLatencyInfo(); |
211 | 213 |
214 // Call this function when you expect there to be a swap buffer. | |
215 // See swap_promise.h for how to use SwapPromise. | |
216 // LTI will take the ownershipf of |swap_promise|. | |
217 void QueueSwapPromise(SwapPromise* swap_promise); | |
218 | |
219 void TakeSwapPromise(ScopedVector<SwapPromise>* new_swap_promise); | |
220 void FinishSwapPromise(); | |
221 void BreakSwapPromise(SwapPromise::DidNotSwapReason reason); | |
222 | |
212 void DidModifyTilePriorities(); | 223 void DidModifyTilePriorities(); |
213 | 224 |
214 ResourceProvider::ResourceId ResourceIdForUIResource(UIResourceId uid) const; | 225 ResourceProvider::ResourceId ResourceIdForUIResource(UIResourceId uid) const; |
215 void ProcessUIResourceRequestQueue(); | 226 void ProcessUIResourceRequestQueue(); |
216 | 227 |
217 bool IsUIResourceOpaque(UIResourceId uid) const; | 228 bool IsUIResourceOpaque(UIResourceId uid) const; |
218 | 229 |
219 void AddLayerWithCopyOutputRequest(LayerImpl* layer); | 230 void AddLayerWithCopyOutputRequest(LayerImpl* layer); |
220 void RemoveLayerWithCopyOutputRequest(LayerImpl* layer); | 231 void RemoveLayerWithCopyOutputRequest(LayerImpl* layer); |
221 const std::vector<LayerImpl*> LayersWithCopyOutputRequest() const; | 232 const std::vector<LayerImpl*> LayersWithCopyOutputRequest() const; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
264 bool needs_update_draw_properties_; | 275 bool needs_update_draw_properties_; |
265 | 276 |
266 // In impl-side painting mode, this is true when the tree may contain | 277 // In impl-side painting mode, this is true when the tree may contain |
267 // structural differences relative to the active tree. | 278 // structural differences relative to the active tree. |
268 bool needs_full_tree_sync_; | 279 bool needs_full_tree_sync_; |
269 | 280 |
270 bool next_activation_forces_redraw_; | 281 bool next_activation_forces_redraw_; |
271 | 282 |
272 ui::LatencyInfo latency_info_; | 283 ui::LatencyInfo latency_info_; |
273 | 284 |
285 ScopedVector<SwapPromise> swap_promise_list_; | |
danakj
2013/11/13 23:22:09
ScopedPtrVector?
Yufeng Shen (Slow to review)
2013/11/14 22:09:55
Done.
| |
286 | |
274 UIResourceRequestQueue ui_resource_request_queue_; | 287 UIResourceRequestQueue ui_resource_request_queue_; |
275 | 288 |
276 private: | 289 private: |
277 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); | 290 DISALLOW_COPY_AND_ASSIGN(LayerTreeImpl); |
278 }; | 291 }; |
279 | 292 |
280 } // namespace cc | 293 } // namespace cc |
281 | 294 |
282 #endif // CC_TREES_LAYER_TREE_IMPL_H_ | 295 #endif // CC_TREES_LAYER_TREE_IMPL_H_ |
OLD | NEW |