| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ |
| 6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ | 6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE
_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace IPC { | 27 namespace IPC { |
| 28 class Message; | 28 class Message; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace content { | 31 namespace content { |
| 32 | 32 |
| 33 class FrameSwapMessageQueue; | 33 class FrameSwapMessageQueue; |
| 34 class SynchronousCompositorClient; | 34 class SynchronousCompositorClient; |
| 35 class SynchronousCompositorExternalBeginFrameSource; | 35 class SynchronousCompositorImpl; |
| 36 class SynchronousCompositorOutputSurface; | 36 class SynchronousCompositorOutputSurface; |
| 37 class WebGraphicsContext3DCommandBufferImpl; | 37 class WebGraphicsContext3DCommandBufferImpl; |
| 38 | 38 |
| 39 // Specialization of the output surface that adapts it to implement the | 39 // Specialization of the output surface that adapts it to implement the |
| 40 // content::SynchronousCompositor public API. This class effects an "inversion | 40 // content::SynchronousCompositor public API. This class effects an "inversion |
| 41 // of control" - enabling drawing to be orchestrated by the embedding | 41 // of control" - enabling drawing to be orchestrated by the embedding |
| 42 // layer, instead of driven by the compositor internals - hence it holds two | 42 // layer, instead of driven by the compositor internals - hence it holds two |
| 43 // 'client' pointers (|client_| in the OutputSurface baseclass and | 43 // 'client' pointers (|client_| in the OutputSurface baseclass and |
| 44 // |delegate_|) which represent the consumers of the two roles in plays. | 44 // |delegate_|) which represent the consumers of the two roles in plays. |
| 45 // This class can be created only on the main thread, but then becomes pinned | 45 // This class can be created only on the main thread, but then becomes pinned |
| 46 // to a fixed thread when BindToClient is called. | 46 // to a fixed thread when BindToClient is called. |
| 47 class SynchronousCompositorOutputSurface | 47 class SynchronousCompositorOutputSurface |
| 48 : NON_EXPORTED_BASE(public cc::OutputSurface) { | 48 : NON_EXPORTED_BASE(public cc::OutputSurface) { |
| 49 public: | 49 public: |
| 50 explicit SynchronousCompositorOutputSurface( | 50 explicit SynchronousCompositorOutputSurface( |
| 51 int routing_id, | 51 int routing_id, |
| 52 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue); | 52 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue); |
| 53 ~SynchronousCompositorOutputSurface() override; | 53 ~SynchronousCompositorOutputSurface() override; |
| 54 | 54 |
| 55 void SetCompositor(SynchronousCompositorImpl* compositor); |
| 56 |
| 55 // OutputSurface. | 57 // OutputSurface. |
| 56 bool BindToClient(cc::OutputSurfaceClient* surface_client) override; | 58 bool BindToClient(cc::OutputSurfaceClient* surface_client) override; |
| 57 void Reshape(const gfx::Size& size, float scale_factor) override; | 59 void Reshape(const gfx::Size& size, float scale_factor) override; |
| 58 void SwapBuffers(cc::CompositorFrame* frame) override; | 60 void SwapBuffers(cc::CompositorFrame* frame) override; |
| 59 | 61 void Invalidate() override; |
| 60 void SetBeginFrameSource( | |
| 61 SynchronousCompositorExternalBeginFrameSource* begin_frame_source); | |
| 62 | 62 |
| 63 // Partial SynchronousCompositor API implementation. | 63 // Partial SynchronousCompositor API implementation. |
| 64 bool InitializeHwDraw( | 64 bool InitializeHwDraw( |
| 65 scoped_refptr<cc::ContextProvider> onscreen_context_provider, | 65 scoped_refptr<cc::ContextProvider> onscreen_context_provider, |
| 66 scoped_refptr<cc::ContextProvider> worker_context_provider); | 66 scoped_refptr<cc::ContextProvider> worker_context_provider); |
| 67 void ReleaseHwDraw(); | 67 void ReleaseHwDraw(); |
| 68 scoped_ptr<cc::CompositorFrame> DemandDrawHw( | 68 scoped_ptr<cc::CompositorFrame> DemandDrawHw( |
| 69 gfx::Size surface_size, | 69 gfx::Size surface_size, |
| 70 const gfx::Transform& transform, | 70 const gfx::Transform& transform, |
| 71 gfx::Rect viewport, | 71 gfx::Rect viewport, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 86 gfx::Rect viewport, | 86 gfx::Rect viewport, |
| 87 gfx::Rect clip, | 87 gfx::Rect clip, |
| 88 gfx::Rect viewport_rect_for_tile_priority, | 88 gfx::Rect viewport_rect_for_tile_priority, |
| 89 gfx::Transform transform_for_tile_priority, | 89 gfx::Transform transform_for_tile_priority, |
| 90 bool hardware_draw); | 90 bool hardware_draw); |
| 91 bool CalledOnValidThread() const; | 91 bool CalledOnValidThread() const; |
| 92 | 92 |
| 93 const int routing_id_; | 93 const int routing_id_; |
| 94 bool registered_; | 94 bool registered_; |
| 95 | 95 |
| 96 // Not owned. |
| 97 SynchronousCompositorImpl* compositor_; |
| 98 |
| 96 gfx::Transform cached_hw_transform_; | 99 gfx::Transform cached_hw_transform_; |
| 97 gfx::Rect cached_hw_viewport_; | 100 gfx::Rect cached_hw_viewport_; |
| 98 gfx::Rect cached_hw_clip_; | 101 gfx::Rect cached_hw_clip_; |
| 99 gfx::Rect cached_hw_viewport_rect_for_tile_priority_; | 102 gfx::Rect cached_hw_viewport_rect_for_tile_priority_; |
| 100 gfx::Transform cached_hw_transform_for_tile_priority_; | 103 gfx::Transform cached_hw_transform_for_tile_priority_; |
| 101 | 104 |
| 102 // Only valid (non-NULL) during a DemandDrawSw() call. | 105 // Only valid (non-NULL) during a DemandDrawSw() call. |
| 103 SkCanvas* current_sw_canvas_; | 106 SkCanvas* current_sw_canvas_; |
| 104 | 107 |
| 105 cc::ManagedMemoryPolicy memory_policy_; | 108 cc::ManagedMemoryPolicy memory_policy_; |
| 106 | 109 |
| 107 cc::OutputSurfaceClient* output_surface_client_; | |
| 108 scoped_ptr<cc::CompositorFrame> frame_holder_; | 110 scoped_ptr<cc::CompositorFrame> frame_holder_; |
| 109 | 111 |
| 110 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; | 112 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; |
| 111 | 113 |
| 112 SynchronousCompositorExternalBeginFrameSource* begin_frame_source_; | |
| 113 | |
| 114 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); | 114 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 } // namespace content | 117 } // namespace content |
| 118 | 118 |
| 119 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURF
ACE_H_ | 119 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURF
ACE_H_ |
| OLD | NEW |