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_OUTPUT_OVERLAY_PROCESSOR_H_ | 5 #ifndef CC_OUTPUT_OVERLAY_PROCESSOR_H_ |
6 #define CC_OUTPUT_OVERLAY_PROCESSOR_H_ | 6 #define CC_OUTPUT_OVERLAY_PROCESSOR_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
| 11 #include "cc/output/overlay_candidate.h" |
11 #include "cc/quads/render_pass.h" | 12 #include "cc/quads/render_pass.h" |
12 | 13 |
13 namespace cc { | 14 namespace cc { |
14 class OutputSurface; | 15 class OutputSurface; |
15 class ResourceProvider; | 16 class ResourceProvider; |
16 | 17 |
17 class CC_EXPORT OverlayProcessor { | 18 class CC_EXPORT OverlayProcessor { |
18 public: | 19 public: |
19 class CC_EXPORT Strategy { | 20 class CC_EXPORT Strategy { |
20 public: | 21 public: |
21 virtual ~Strategy() {} | 22 virtual ~Strategy() {} |
22 // Returns false if the strategy cannot be made to work with the | 23 // Returns false if the strategy cannot be made to work with the |
23 // current set of render passes. Returns true if the strategy was successful | 24 // current set of render passes. Returns true if the strategy was successful |
24 // and adds any additional passes necessary to represent overlays to | 25 // and adds any additional passes necessary to represent overlays to |
25 // |render_passes_in_draw_order|. | 26 // |render_passes_in_draw_order|. |
26 virtual bool Attempt(RenderPassList* render_passes_in_draw_order) = 0; | 27 virtual bool Attempt(RenderPassList* render_passes_in_draw_order, |
| 28 OverlayCandidateList* candidates) = 0; |
27 }; | 29 }; |
28 typedef ScopedPtrVector<Strategy> StrategyList; | 30 typedef ScopedPtrVector<Strategy> StrategyList; |
29 | 31 |
30 OverlayProcessor(OutputSurface* surface, ResourceProvider* resource_provider); | 32 OverlayProcessor(OutputSurface* surface, ResourceProvider* resource_provider); |
31 virtual ~OverlayProcessor(); | 33 virtual ~OverlayProcessor(); |
32 // Virtual to allow testing different strategies. | 34 // Virtual to allow testing different strategies. |
33 virtual void Initialize(); | 35 virtual void Initialize(); |
34 | 36 |
35 void ProcessForOverlays(RenderPassList* render_passes_in_draw_order); | 37 void ProcessForOverlays(RenderPassList* render_passes_in_draw_order, |
| 38 OverlayCandidateList* candidate_list); |
36 | 39 |
37 protected: | 40 protected: |
38 StrategyList strategies_; | 41 StrategyList strategies_; |
39 OutputSurface* surface_; | 42 OutputSurface* surface_; |
40 ResourceProvider* resource_provider_; | 43 ResourceProvider* resource_provider_; |
41 | 44 |
42 private: | 45 private: |
43 DISALLOW_COPY_AND_ASSIGN(OverlayProcessor); | 46 DISALLOW_COPY_AND_ASSIGN(OverlayProcessor); |
44 }; | 47 }; |
45 | 48 |
46 } // namespace cc | 49 } // namespace cc |
47 | 50 |
48 #endif // CC_OUTPUT_OVERLAY_PROCESSOR_H_ | 51 #endif // CC_OUTPUT_OVERLAY_PROCESSOR_H_ |
OLD | NEW |