| OLD | NEW |
| 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_OUTPUT_OVERLAY_STRATEGY_COMMON_H_ | 5 #ifndef CC_OUTPUT_OVERLAY_STRATEGY_COMMON_H_ |
| 6 #define CC_OUTPUT_OVERLAY_STRATEGY_COMMON_H_ | 6 #define CC_OUTPUT_OVERLAY_STRATEGY_COMMON_H_ |
| 7 | 7 |
| 8 #include "cc/base/cc_export.h" | 8 #include "cc/base/cc_export.h" |
| 9 #include "cc/output/overlay_candidate.h" | 9 #include "cc/output/overlay_candidate.h" |
| 10 #include "cc/output/overlay_processor.h" | 10 #include "cc/output/overlay_processor.h" |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 class IOSurfaceDrawQuad; | 13 class IOSurfaceDrawQuad; |
| 14 class OverlayCandidate; | 14 class OverlayCandidate; |
| 15 class OverlayCandidateValidator; | 15 class OverlayCandidateValidator; |
| 16 class StreamVideoDrawQuad; | 16 class StreamVideoDrawQuad; |
| 17 class TextureDrawQuad; | 17 class TextureDrawQuad; |
| 18 | 18 |
| 19 class CC_EXPORT OverlayStrategyCommonDelegate { |
| 20 public: |
| 21 virtual ~OverlayStrategyCommonDelegate() {} |
| 22 virtual bool TryOverlay(OverlayCandidateValidator* capability_checker, |
| 23 RenderPassList* render_passes_in_draw_order, |
| 24 OverlayCandidateList* candidate_list, |
| 25 const OverlayCandidate& candidate, |
| 26 QuadList::Iterator iter, |
| 27 float device_scale_factor) = 0; |
| 28 }; |
| 29 |
| 19 class CC_EXPORT OverlayStrategyCommon : public OverlayProcessor::Strategy { | 30 class CC_EXPORT OverlayStrategyCommon : public OverlayProcessor::Strategy { |
| 20 public: | 31 public: |
| 21 explicit OverlayStrategyCommon(OverlayCandidateValidator* capability_checker); | 32 explicit OverlayStrategyCommon(OverlayCandidateValidator* capability_checker, |
| 33 OverlayStrategyCommonDelegate* delegate); |
| 22 ~OverlayStrategyCommon() override; | 34 ~OverlayStrategyCommon() override; |
| 23 | 35 |
| 24 bool Attempt(RenderPassList* render_passes_in_draw_order, | 36 bool Attempt(RenderPassList* render_passes_in_draw_order, |
| 25 OverlayCandidateList* candidate_list) override; | 37 OverlayCandidateList* candidate_list, |
| 38 float device_scale_factor) override; |
| 39 |
| 40 // Returns true if |draw_quad| will not block quads underneath from becoming |
| 41 // an overlay. |
| 42 static bool IsInvisibleQuad(const DrawQuad* draw_quad); |
| 26 | 43 |
| 27 protected: | 44 protected: |
| 28 bool GetCandidateQuadInfo(const DrawQuad& draw_quad, | 45 bool GetCandidateQuadInfo(const DrawQuad& draw_quad, |
| 29 OverlayCandidate* quad_info); | 46 OverlayCandidate* quad_info); |
| 30 | 47 |
| 31 // Returns true if |draw_quad| will not block quads underneath from becoming | |
| 32 // an overlay. | |
| 33 bool IsInvisibleQuad(const DrawQuad* draw_quad); | |
| 34 | |
| 35 // Returns true if |draw_quad| is of a known quad type and contains an | 48 // Returns true if |draw_quad| is of a known quad type and contains an |
| 36 // overlayable resource. | 49 // overlayable resource. |
| 37 bool IsOverlayQuad(const DrawQuad* draw_quad); | 50 bool IsOverlayQuad(const DrawQuad* draw_quad); |
| 38 | 51 |
| 39 bool GetTextureQuadInfo(const TextureDrawQuad& quad, | 52 bool GetTextureQuadInfo(const TextureDrawQuad& quad, |
| 40 OverlayCandidate* quad_info); | 53 OverlayCandidate* quad_info); |
| 41 bool GetVideoQuadInfo(const StreamVideoDrawQuad& quad, | 54 bool GetVideoQuadInfo(const StreamVideoDrawQuad& quad, |
| 42 OverlayCandidate* quad_info); | 55 OverlayCandidate* quad_info); |
| 43 bool GetIOSurfaceQuadInfo(const IOSurfaceDrawQuad& quad, | 56 bool GetIOSurfaceQuadInfo(const IOSurfaceDrawQuad& quad, |
| 44 OverlayCandidate* quad_info); | 57 OverlayCandidate* quad_info); |
| 45 | 58 |
| 46 virtual bool TryOverlay(OverlayCandidateValidator* capability_checker, | |
| 47 RenderPassList* render_passes_in_draw_order, | |
| 48 OverlayCandidateList* candidate_list, | |
| 49 const OverlayCandidate& candidate, | |
| 50 QuadList::Iterator iter) = 0; | |
| 51 | |
| 52 private: | 59 private: |
| 53 OverlayCandidateValidator* capability_checker_; | 60 OverlayCandidateValidator* capability_checker_; |
| 61 scoped_ptr<OverlayStrategyCommonDelegate> delegate_; |
| 54 | 62 |
| 55 DISALLOW_COPY_AND_ASSIGN(OverlayStrategyCommon); | 63 DISALLOW_COPY_AND_ASSIGN(OverlayStrategyCommon); |
| 56 }; | 64 }; |
| 57 } // namespace cc | 65 } // namespace cc |
| 58 | 66 |
| 59 #endif // CC_OUTPUT_OVERLAY_STRATEGY_COMMON_H_ | 67 #endif // CC_OUTPUT_OVERLAY_STRATEGY_COMMON_H_ |
| OLD | NEW |