Revert of cc: Implement shared worker contexts. (patchset #9 id:160001 of https:...
[chromium-blink-merge.git] / content / browser / android / in_process / synchronous_compositor_output_surface.h
blob414695230c10f978ff18ec3758c012c9d5e9465e
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
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_
6 #define CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_
8 #include <vector>
10 #include "base/basictypes.h"
11 #include "base/callback.h"
12 #include "base/compiler_specific.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "cc/output/compositor_frame.h"
16 #include "cc/output/managed_memory_policy.h"
17 #include "cc/output/output_surface.h"
18 #include "content/public/browser/android/synchronous_compositor.h"
19 #include "ipc/ipc_message.h"
20 #include "ui/gfx/transform.h"
22 namespace cc {
23 class ContextProvider;
24 class CompositorFrameMetadata;
27 namespace IPC {
28 class Message;
31 namespace content {
33 class FrameSwapMessageQueue;
34 class SynchronousCompositorClient;
35 class SynchronousCompositorImpl;
36 class SynchronousCompositorOutputSurface;
37 class WebGraphicsContext3DCommandBufferImpl;
39 // Specialization of the output surface that adapts it to implement the
40 // content::SynchronousCompositor public API. This class effects an "inversion
41 // of control" - enabling drawing to be orchestrated by the embedding
42 // layer, instead of driven by the compositor internals - hence it holds two
43 // 'client' pointers (|client_| in the OutputSurface baseclass and
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
46 // to a fixed thread when BindToClient is called.
47 class SynchronousCompositorOutputSurface
48 : NON_EXPORTED_BASE(public cc::OutputSurface) {
49 public:
50 SynchronousCompositorOutputSurface(
51 const scoped_refptr<cc::ContextProvider>& context_provider,
52 const scoped_refptr<cc::ContextProvider>& worker_context_provider,
53 int routing_id,
54 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue);
55 ~SynchronousCompositorOutputSurface() override;
57 void SetCompositor(SynchronousCompositorImpl* compositor);
59 // OutputSurface.
60 bool BindToClient(cc::OutputSurfaceClient* surface_client) override;
61 void Reshape(const gfx::Size& size, float scale_factor) override;
62 void SwapBuffers(cc::CompositorFrame* frame) override;
63 void Invalidate() override;
65 // Partial SynchronousCompositor API implementation.
66 scoped_ptr<cc::CompositorFrame> DemandDrawHw(
67 gfx::Size surface_size,
68 const gfx::Transform& transform,
69 gfx::Rect viewport,
70 gfx::Rect clip,
71 gfx::Rect viewport_rect_for_tile_priority,
72 const gfx::Transform& transform_for_tile_priority);
73 void ReturnResources(const cc::CompositorFrameAck& frame_ack);
74 scoped_ptr<cc::CompositorFrame> DemandDrawSw(SkCanvas* canvas);
75 void SetMemoryPolicy(size_t bytes_limit);
76 void SetTreeActivationCallback(const base::Closure& callback);
77 void GetMessagesToDeliver(ScopedVector<IPC::Message>* messages);
79 size_t GetMemoryPolicy() const {
80 return memory_policy_.bytes_limit_when_visible;
83 private:
84 class SoftwareDevice;
85 friend class SoftwareDevice;
87 void InvokeComposite(const gfx::Transform& transform,
88 gfx::Rect viewport,
89 gfx::Rect clip,
90 gfx::Rect viewport_rect_for_tile_priority,
91 gfx::Transform transform_for_tile_priority,
92 bool hardware_draw);
93 bool CalledOnValidThread() const;
95 const int routing_id_;
96 bool registered_;
98 // Not owned.
99 SynchronousCompositorImpl* compositor_;
101 gfx::Transform cached_hw_transform_;
102 gfx::Rect cached_hw_viewport_;
103 gfx::Rect cached_hw_clip_;
104 gfx::Rect cached_hw_viewport_rect_for_tile_priority_;
105 gfx::Transform cached_hw_transform_for_tile_priority_;
107 // Only valid (non-NULL) during a DemandDrawSw() call.
108 SkCanvas* current_sw_canvas_;
110 cc::ManagedMemoryPolicy memory_policy_;
112 scoped_ptr<cc::CompositorFrame> frame_holder_;
114 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_;
116 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface);
119 } // namespace content
121 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_