OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ | 5 #ifndef CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ |
6 #define CONTENT_RENDERER_ANDOIRD_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ | 6 #define CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "cc/output/output_surface.h" | 11 #include "cc/output/output_surface.h" |
12 #include "content/public/renderer/android/synchronous_compositor.h" | 12 #include "content/public/renderer/android/synchronous_compositor.h" |
13 | 13 |
14 namespace content { | 14 namespace content { |
15 | 15 |
16 class SynchronousCompositorClient; | 16 class SynchronousCompositorClient; |
| 17 class SynchronousCompositorOutputSurfaceDelegate; |
17 class WebGraphicsContext3DCommandBufferImpl; | 18 class WebGraphicsContext3DCommandBufferImpl; |
18 | 19 |
| 20 class SynchronousCompositorOutputSurfaceDelegate { |
| 21 public: |
| 22 virtual void SetContinuousInvalidate(bool enable) = 0; |
| 23 virtual void DidCreateSynchronousOutputSurface() = 0; |
| 24 virtual void DidDestroySynchronousOutputSurface() = 0; |
| 25 |
| 26 protected: |
| 27 SynchronousCompositorOutputSurfaceDelegate() {} |
| 28 virtual ~SynchronousCompositorOutputSurfaceDelegate() {} |
| 29 |
| 30 private: |
| 31 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurfaceDelegate); |
| 32 }; |
| 33 |
19 // Specialization of the output surface that adapts it to implement the | 34 // Specialization of the output surface that adapts it to implement the |
20 // content::SynchronousCompositor public API. This class effects an "inversion | 35 // content::SynchronousCompositor public API. This class effects an "inversion |
21 // of control" - enabling drawing to be orchestrated by the embedding | 36 // of control" - enabling drawing to be orchestrated by the embedding |
22 // layer, instead of driven by the compositor internals - hence it holds two | 37 // layer, instead of driven by the compositor internals - hence it holds two |
23 // 'client' pointers (including |client_| in the OutputSurface baseclass) which | 38 // 'client' pointers (|client_| in the OutputSurface baseclass and |delegate_|) |
24 // represent the consumers of the two roles in plays. | 39 // which represent the consumers of the two roles in plays. |
25 // This class can be created only on the main thread, but then becomes pinned | 40 // This class can be created only on the main thread, but then becomes pinned |
26 // to a fixed thread when BindToClient is called. | 41 // to a fixed thread when BindToClient is called. |
27 class SynchronousCompositorOutputSurface | 42 class SynchronousCompositorOutputSurface |
28 : NON_EXPORTED_BASE(public cc::OutputSurface), | 43 : NON_EXPORTED_BASE(public cc::OutputSurface) { |
29 NON_EXPORTED_BASE(public SynchronousCompositor) { | |
30 public: | 44 public: |
31 explicit SynchronousCompositorOutputSurface(int32 routing_id); | 45 explicit SynchronousCompositorOutputSurface( |
| 46 SynchronousCompositorOutputSurfaceDelegate* delegate); |
32 virtual ~SynchronousCompositorOutputSurface(); | 47 virtual ~SynchronousCompositorOutputSurface(); |
33 | 48 |
34 // OutputSurface. | 49 // OutputSurface. |
35 virtual bool ForcedDrawToSoftwareDevice() const OVERRIDE; | 50 virtual bool ForcedDrawToSoftwareDevice() const OVERRIDE; |
36 virtual bool BindToClient(cc::OutputSurfaceClient* surface_client) OVERRIDE; | 51 virtual bool BindToClient(cc::OutputSurfaceClient* surface_client) OVERRIDE; |
37 virtual void Reshape(gfx::Size size, float scale_factor) OVERRIDE; | 52 virtual void Reshape(gfx::Size size, float scale_factor) OVERRIDE; |
38 virtual void SendFrameToParentCompositor(cc::CompositorFrame* frame) OVERRIDE; | 53 virtual void SendFrameToParentCompositor(cc::CompositorFrame* frame) OVERRIDE; |
39 virtual void SetNeedsBeginFrame(bool enable) OVERRIDE; | 54 virtual void SetNeedsBeginFrame(bool enable) OVERRIDE; |
40 virtual void SwapBuffers(const ui::LatencyInfo& info) OVERRIDE; | 55 virtual void SwapBuffers(const ui::LatencyInfo& info) OVERRIDE; |
41 | 56 |
42 // SynchronousCompositor. | 57 // Partial SynchronousCompositor API implementation. |
43 virtual void SetClient(SynchronousCompositorClient* compositor_client) | 58 bool IsHwReady(); |
44 OVERRIDE; | 59 bool DemandDrawSw(SkCanvas* canvas); |
45 virtual bool IsHwReady() OVERRIDE; | 60 bool DemandDrawHw(gfx::Size view_size, |
46 virtual bool DemandDrawSw(SkCanvas* canvas) OVERRIDE; | 61 const gfx::Transform& transform, |
47 virtual bool DemandDrawHw( | 62 gfx::Rect clip); |
48 gfx::Size view_size, | |
49 const gfx::Transform& transform, | |
50 gfx::Rect clip) OVERRIDE; | |
51 | 63 |
52 private: | 64 private: |
53 class SoftwareDevice; | 65 class SoftwareDevice; |
54 friend class SoftwareDevice; | 66 friend class SoftwareDevice; |
55 | 67 |
56 void InvokeComposite(const gfx::Transform& transform, gfx::Rect damage_area); | 68 void InvokeComposite(const gfx::Transform& transform, gfx::Rect damage_area); |
57 void UpdateCompositorClientSettings(); | 69 void UpdateCompositorClientSettings(); |
58 void NotifyCompositorSettingsChanged(); | 70 void NotifyCompositorSettingsChanged(); |
59 bool CalledOnValidThread() const; | 71 bool CalledOnValidThread() const; |
60 | 72 |
61 SynchronousCompositorClient* compositor_client_; | 73 SynchronousCompositorOutputSurfaceDelegate* delegate_; |
62 int routing_id_; | |
63 bool needs_begin_frame_; | 74 bool needs_begin_frame_; |
64 bool did_swap_buffer_; | 75 bool did_swap_buffer_; |
65 | 76 |
66 // Only valid (non-NULL) during a DemandDrawSw() call. | 77 // Only valid (non-NULL) during a DemandDrawSw() call. |
67 SkCanvas* current_sw_canvas_; | 78 SkCanvas* current_sw_canvas_; |
68 | 79 |
69 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); | 80 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); |
70 }; | 81 }; |
71 | 82 |
72 } // namespace content | 83 } // namespace content |
73 | 84 |
74 #endif // CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ | 85 #endif // CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ |
OLD | NEW |