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