Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: content/browser/android/in_process/synchronous_compositor_output_surface.h

Issue 619843002: cc: Make separate interface for BeginFrame ipc from OutputSurface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 13 matching lines...) Expand all
24 } 24 }
25 25
26 namespace IPC { 26 namespace IPC {
27 class Message; 27 class Message;
28 } 28 }
29 29
30 namespace content { 30 namespace content {
31 31
32 class FrameSwapMessageQueue; 32 class FrameSwapMessageQueue;
33 class SynchronousCompositorClient; 33 class SynchronousCompositorClient;
34 class SynchronousCompositorExternalBeginFrameSource;
34 class SynchronousCompositorOutputSurface; 35 class SynchronousCompositorOutputSurface;
35 class WebGraphicsContext3DCommandBufferImpl; 36 class WebGraphicsContext3DCommandBufferImpl;
36 37
37 class SynchronousCompositorOutputSurfaceDelegate { 38 class SynchronousCompositorOutputSurfaceDelegate {
38 public: 39 public:
39 virtual void DidBindOutputSurface( 40 virtual void DidBindOutputSurface(
40 SynchronousCompositorOutputSurface* output_surface) = 0; 41 SynchronousCompositorOutputSurface* output_surface) = 0;
41 virtual void DidDestroySynchronousOutputSurface( 42 virtual void DidDestroySynchronousOutputSurface(
42 SynchronousCompositorOutputSurface* output_surface) = 0; 43 SynchronousCompositorOutputSurface* output_surface) = 0;
43 virtual void SetContinuousInvalidate(bool enable) = 0;
44 virtual void DidActivatePendingTree() = 0; 44 virtual void DidActivatePendingTree() = 0;
45 45
46 protected: 46 protected:
47 SynchronousCompositorOutputSurfaceDelegate() {} 47 SynchronousCompositorOutputSurfaceDelegate() {}
48 virtual ~SynchronousCompositorOutputSurfaceDelegate() {} 48 virtual ~SynchronousCompositorOutputSurfaceDelegate() {}
49 }; 49 };
50 50
51 // Specialization of the output surface that adapts it to implement the 51 // Specialization of the output surface that adapts it to implement the
52 // content::SynchronousCompositor public API. This class effects an "inversion 52 // content::SynchronousCompositor public API. This class effects an "inversion
53 // of control" - enabling drawing to be orchestrated by the embedding 53 // of control" - enabling drawing to be orchestrated by the embedding
54 // layer, instead of driven by the compositor internals - hence it holds two 54 // layer, instead of driven by the compositor internals - hence it holds two
55 // 'client' pointers (|client_| in the OutputSurface baseclass and 55 // 'client' pointers (|client_| in the OutputSurface baseclass and
56 // GetDelegate()) which represent the consumers of the two roles in plays. 56 // GetDelegate()) which represent the consumers of the two roles in plays.
57 // This class can be created only on the main thread, but then becomes pinned 57 // This class can be created only on the main thread, but then becomes pinned
58 // to a fixed thread when BindToClient is called. 58 // to a fixed thread when BindToClient is called.
59 class SynchronousCompositorOutputSurface 59 class SynchronousCompositorOutputSurface
60 : NON_EXPORTED_BASE(public cc::OutputSurface) { 60 : NON_EXPORTED_BASE(public cc::OutputSurface) {
61 public: 61 public:
62 explicit SynchronousCompositorOutputSurface( 62 explicit SynchronousCompositorOutputSurface(
63 int routing_id, 63 int routing_id,
64 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue); 64 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue);
65 virtual ~SynchronousCompositorOutputSurface(); 65 virtual ~SynchronousCompositorOutputSurface();
66 66
67 // OutputSurface. 67 // OutputSurface.
68 virtual bool BindToClient(cc::OutputSurfaceClient* surface_client) override; 68 virtual bool BindToClient(cc::OutputSurfaceClient* surface_client) override;
69 virtual void Reshape(const gfx::Size& size, float scale_factor) override; 69 virtual void Reshape(const gfx::Size& size, float scale_factor) override;
70 virtual void SetNeedsBeginFrame(bool enable) override;
71 virtual void SwapBuffers(cc::CompositorFrame* frame) override; 70 virtual void SwapBuffers(cc::CompositorFrame* frame) override;
72 71
73 // Partial SynchronousCompositor API implementation. 72 // Partial SynchronousCompositor API implementation.
74 bool InitializeHwDraw( 73 bool InitializeHwDraw(
75 scoped_refptr<cc::ContextProvider> onscreen_context_provider); 74 scoped_refptr<cc::ContextProvider> onscreen_context_provider);
76 void ReleaseHwDraw(); 75 void ReleaseHwDraw();
77 scoped_ptr<cc::CompositorFrame> DemandDrawHw( 76 scoped_ptr<cc::CompositorFrame> DemandDrawHw(
78 gfx::Size surface_size, 77 gfx::Size surface_size,
79 const gfx::Transform& transform, 78 const gfx::Transform& transform,
80 gfx::Rect viewport, 79 gfx::Rect viewport,
81 gfx::Rect clip, 80 gfx::Rect clip,
82 gfx::Rect viewport_rect_for_tile_priority, 81 gfx::Rect viewport_rect_for_tile_priority,
83 const gfx::Transform& transform_for_tile_priority); 82 const gfx::Transform& transform_for_tile_priority);
84 void ReturnResources(const cc::CompositorFrameAck& frame_ack); 83 void ReturnResources(const cc::CompositorFrameAck& frame_ack);
85 scoped_ptr<cc::CompositorFrame> DemandDrawSw(SkCanvas* canvas); 84 scoped_ptr<cc::CompositorFrame> DemandDrawSw(SkCanvas* canvas);
86 void SetMemoryPolicy(size_t bytes_limit); 85 void SetMemoryPolicy(size_t bytes_limit);
87 void GetMessagesToDeliver(ScopedVector<IPC::Message>* messages); 86 void GetMessagesToDeliver(ScopedVector<IPC::Message>* messages);
88 87
88 void set_external_begin_frame_source(
89 SynchronousCompositorExternalBeginFrameSource* begin_frame_source) {
90 begin_frame_source_ = begin_frame_source;
91 }
92
89 private: 93 private:
90 class SoftwareDevice; 94 class SoftwareDevice;
91 friend class SoftwareDevice; 95 friend class SoftwareDevice;
92 96
93 void InvokeComposite(const gfx::Transform& transform, 97 void InvokeComposite(const gfx::Transform& transform,
94 gfx::Rect viewport, 98 gfx::Rect viewport,
95 gfx::Rect clip, 99 gfx::Rect clip,
96 gfx::Rect viewport_rect_for_tile_priority, 100 gfx::Rect viewport_rect_for_tile_priority,
97 gfx::Transform transform_for_tile_priority, 101 gfx::Transform transform_for_tile_priority,
98 bool hardware_draw); 102 bool hardware_draw);
99 bool CalledOnValidThread() const; 103 bool CalledOnValidThread() const;
100 SynchronousCompositorOutputSurfaceDelegate* GetDelegate(); 104 SynchronousCompositorOutputSurfaceDelegate* GetDelegate();
101 105
102 int routing_id_; 106 int routing_id_;
103 bool needs_begin_frame_;
104 bool invoking_composite_;
105 107
106 gfx::Transform cached_hw_transform_; 108 gfx::Transform cached_hw_transform_;
107 gfx::Rect cached_hw_viewport_; 109 gfx::Rect cached_hw_viewport_;
108 gfx::Rect cached_hw_clip_; 110 gfx::Rect cached_hw_clip_;
109 gfx::Rect cached_hw_viewport_rect_for_tile_priority_; 111 gfx::Rect cached_hw_viewport_rect_for_tile_priority_;
110 gfx::Transform cached_hw_transform_for_tile_priority_; 112 gfx::Transform cached_hw_transform_for_tile_priority_;
111 113
112 // Only valid (non-NULL) during a DemandDrawSw() call. 114 // Only valid (non-NULL) during a DemandDrawSw() call.
113 SkCanvas* current_sw_canvas_; 115 SkCanvas* current_sw_canvas_;
114 116
115 cc::ManagedMemoryPolicy memory_policy_; 117 cc::ManagedMemoryPolicy memory_policy_;
116 118
117 cc::OutputSurfaceClient* output_surface_client_; 119 cc::OutputSurfaceClient* output_surface_client_;
118 scoped_ptr<cc::CompositorFrame> frame_holder_; 120 scoped_ptr<cc::CompositorFrame> frame_holder_;
119 121
120 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; 122 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_;
121 123
124 SynchronousCompositorExternalBeginFrameSource* begin_frame_source_;
125
122 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); 126 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface);
123 }; 127 };
124 128
125 } // namespace content 129 } // namespace content
126 130
127 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURF ACE_H_ 131 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURF ACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698