Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ | 5 #ifndef CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ |
| 6 #define CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ | 6 #define CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "cc/output/compositor_frame.h" | 10 #include "cc/output/compositor_frame.h" |
| 11 #include "cc/scheduler/begin_frame_source.h" | 11 #include "cc/scheduler/begin_frame_source.h" |
| 12 #include "cc/surfaces/display.h" | 12 #include "cc/surfaces/display.h" |
| 13 #include "cc/surfaces/display_client.h" | 13 #include "cc/surfaces/display_client.h" |
| 14 #include "cc/surfaces/surface_factory.h" | 14 #include "cc/surfaces/surface_factory.h" |
| 15 #include "cc/surfaces/surface_factory_client.h" | 15 #include "cc/surfaces/surface_factory_client.h" |
| 16 #include "cc/surfaces/surfaces_export.h" | 16 #include "cc/surfaces/surfaces_export.h" |
| 17 | 17 |
| 18 namespace cc { | 18 namespace cc { |
| 19 | 19 |
| 20 class CompositorFrameSinkSupportClient; | 20 class CompositorFrameSinkSupportClient; |
| 21 class Display; | 21 class Display; |
| 22 class SurfaceManager; | 22 class SurfaceManager; |
| 23 | 23 |
| 24 class CC_SURFACES_EXPORT CompositorFrameSinkSupport | 24 class CC_SURFACES_EXPORT CompositorFrameSinkSupport |
| 25 : public NON_EXPORTED_BASE(DisplayClient), | 25 : public NON_EXPORTED_BASE(DisplayClient), |
| 26 public SurfaceFactoryClient, | 26 public SurfaceFactoryClient, |
| 27 public BeginFrameObserver { | 27 public BeginFrameObserver { |
| 28 public: | 28 public: |
| 29 CompositorFrameSinkSupport( | 29 // |display| is nullptr if the CompositorFrameSinkSupport submits |
| 30 CompositorFrameSinkSupportClient* client, | 30 // CompositorFrames to a buffer instead of a DisplayCompositor. |
|
danakj
2017/02/03 18:48:43
buffer => offscreen texture/bitmap
Alex Z.
2017/02/03 19:46:37
Done.
| |
| 31 SurfaceManager* surface_manager, | 31 // e.g. OffscreenCanvasCompositorFrameSink and |
| 32 const FrameSinkId& frame_sink_id, | 32 // GpuOffscreenCompositorframeSink. |
|
danakj
2017/02/03 18:48:43
Frame
Alex Z.
2017/02/03 19:46:37
Done.
| |
| 33 std::unique_ptr<Display> display, | 33 CompositorFrameSinkSupport(CompositorFrameSinkSupportClient* client, |
| 34 std::unique_ptr<BeginFrameSource> display_begin_frame_source); | 34 SurfaceManager* surface_manager, |
| 35 const FrameSinkId& frame_sink_id, | |
| 36 Display* display, | |
| 37 bool needs_sync_points = true); | |
| 35 | 38 |
| 36 ~CompositorFrameSinkSupport() override; | 39 ~CompositorFrameSinkSupport() override; |
| 37 | 40 |
| 38 const FrameSinkId& frame_sink_id() const { return frame_sink_id_; } | 41 const FrameSinkId& frame_sink_id() const { return frame_sink_id_; } |
| 39 | 42 |
| 40 void EvictFrame(); | 43 void EvictFrame(); |
| 41 void SetNeedsBeginFrame(bool needs_begin_frame); | 44 void SetNeedsBeginFrame(bool needs_begin_frame); |
| 42 void SubmitCompositorFrame(const LocalSurfaceId& local_surface_id, | 45 void SubmitCompositorFrame(const LocalSurfaceId& local_surface_id, |
| 43 CompositorFrame frame); | 46 CompositorFrame frame); |
| 44 void Require(const LocalSurfaceId& local_surface_id, | 47 void Require(const LocalSurfaceId& local_surface_id, |
| 45 const SurfaceSequence& sequence); | 48 const SurfaceSequence& sequence); |
| 46 void Satisfy(const SurfaceSequence& sequence); | 49 void Satisfy(const SurfaceSequence& sequence); |
| 47 void AddChildFrameSink(const FrameSinkId& child_frame_sink_id); | 50 void AddChildFrameSink(const FrameSinkId& child_frame_sink_id); |
| 48 void RemoveChildFrameSink(const FrameSinkId& child_frame_sink_id); | 51 void RemoveChildFrameSink(const FrameSinkId& child_frame_sink_id); |
| 52 void ForceReclaimResources(); | |
| 49 | 53 |
| 50 Display* display() { return display_.get(); } | 54 Display* display() { return display_; } |
| 51 | 55 |
| 52 private: | 56 private: |
| 53 void DidReceiveCompositorFrameAck(); | 57 void DidReceiveCompositorFrameAck(); |
| 54 | 58 |
| 55 // DisplayClient implementation. | 59 // DisplayClient implementation. |
| 56 void DisplayOutputSurfaceLost() override; | 60 void DisplayOutputSurfaceLost() override; |
| 57 void DisplayWillDrawAndSwap(bool will_draw_and_swap, | 61 void DisplayWillDrawAndSwap(bool will_draw_and_swap, |
| 58 const RenderPassList& render_passes) override; | 62 const RenderPassList& render_passes) override; |
| 59 void DisplayDidDrawAndSwap() override; | 63 void DisplayDidDrawAndSwap() override; |
| 60 | 64 |
| 61 // SurfaceFactoryClient implementation. | 65 // SurfaceFactoryClient implementation. |
| 62 void ReturnResources(const ReturnedResourceArray& resources) override; | 66 void ReturnResources(const ReturnedResourceArray& resources) override; |
| 63 void SetBeginFrameSource(BeginFrameSource* begin_frame_source) override; | 67 void SetBeginFrameSource(BeginFrameSource* begin_frame_source) override; |
| 64 void WillDrawSurface(const LocalSurfaceId& local_surface_id, | 68 void WillDrawSurface(const LocalSurfaceId& local_surface_id, |
| 65 const gfx::Rect& damage_rect) override; | 69 const gfx::Rect& damage_rect) override; |
| 66 | 70 |
| 67 // BeginFrameObserver implementation. | 71 // BeginFrameObserver implementation. |
| 68 void OnBeginFrame(const BeginFrameArgs& args) override; | 72 void OnBeginFrame(const BeginFrameArgs& args) override; |
| 69 const BeginFrameArgs& LastUsedBeginFrameArgs() const override; | 73 const BeginFrameArgs& LastUsedBeginFrameArgs() const override; |
| 70 void OnBeginFrameSourcePausedChanged(bool paused) override; | 74 void OnBeginFrameSourcePausedChanged(bool paused) override; |
| 71 | 75 |
| 72 void UpdateNeedsBeginFramesInternal(); | 76 void UpdateNeedsBeginFramesInternal(); |
| 73 | 77 |
| 74 CompositorFrameSinkSupportClient* const client_; | 78 CompositorFrameSinkSupportClient* const client_; |
| 75 | 79 |
| 76 SurfaceManager* const surface_manager_; | 80 SurfaceManager* const surface_manager_; |
| 77 | |
| 78 const FrameSinkId frame_sink_id_; | 81 const FrameSinkId frame_sink_id_; |
| 79 | 82 Display* const display_; |
| 80 // GpuCompositorFrameSink holds a Display and its BeginFrameSource if it | |
| 81 // created with non-null gpu::SurfaceHandle. In the window server, the display | |
| 82 // root window's CompositorFrameSink will have a valid gpu::SurfaceHandle. | |
| 83 std::unique_ptr<BeginFrameSource> display_begin_frame_source_; | |
| 84 std::unique_ptr<Display> display_; | |
| 85 | 83 |
| 86 SurfaceFactory surface_factory_; | 84 SurfaceFactory surface_factory_; |
| 87 // Counts the number of CompositorFrames that have been submitted and have not | 85 // Counts the number of CompositorFrames that have been submitted and have not |
| 88 // yet received an ACK. | 86 // yet received an ACK. |
| 89 int ack_pending_count_ = 0; | 87 int ack_pending_count_ = 0; |
| 90 ReturnedResourceArray surface_returned_resources_; | 88 ReturnedResourceArray surface_returned_resources_; |
| 91 | 89 |
| 92 // The begin frame source being observered. Null if none. | 90 // The begin frame source being observered. Null if none. |
| 93 BeginFrameSource* begin_frame_source_ = nullptr; | 91 BeginFrameSource* begin_frame_source_ = nullptr; |
| 94 | 92 |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 105 std::unordered_set<FrameSinkId, FrameSinkIdHash> child_frame_sinks_; | 103 std::unordered_set<FrameSinkId, FrameSinkIdHash> child_frame_sinks_; |
| 106 | 104 |
| 107 base::WeakPtrFactory<CompositorFrameSinkSupport> weak_factory_; | 105 base::WeakPtrFactory<CompositorFrameSinkSupport> weak_factory_; |
| 108 | 106 |
| 109 DISALLOW_COPY_AND_ASSIGN(CompositorFrameSinkSupport); | 107 DISALLOW_COPY_AND_ASSIGN(CompositorFrameSinkSupport); |
| 110 }; | 108 }; |
| 111 | 109 |
| 112 } // namespace cc | 110 } // namespace cc |
| 113 | 111 |
| 114 #endif // CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ | 112 #endif // CC_SURFACES_COMPOSITOR_FRAME_SINK_SUPPORT_H_ |
| OLD | NEW |