[Mac] Implement Ambient Light API
[chromium-blink-merge.git] / content / browser / android / in_process / synchronous_compositor_output_surface.h
blob5262b7eeac85d80463312c01ae38ad564e104b23
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 SynchronousCompositorExternalBeginFrameSource;
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 explicit SynchronousCompositorOutputSurface(
51 int routing_id,
52 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue);
53 virtual ~SynchronousCompositorOutputSurface();
55 // OutputSurface.
56 virtual bool BindToClient(cc::OutputSurfaceClient* surface_client) override;
57 virtual void Reshape(const gfx::Size& size, float scale_factor) override;
58 virtual void SwapBuffers(cc::CompositorFrame* frame) override;
60 void SetBeginFrameSource(
61 SynchronousCompositorExternalBeginFrameSource* begin_frame_source);
63 // Partial SynchronousCompositor API implementation.
64 bool InitializeHwDraw(
65 scoped_refptr<cc::ContextProvider> onscreen_context_provider);
66 void ReleaseHwDraw();
67 scoped_ptr<cc::CompositorFrame> DemandDrawHw(
68 gfx::Size surface_size,
69 const gfx::Transform& transform,
70 gfx::Rect viewport,
71 gfx::Rect clip,
72 gfx::Rect viewport_rect_for_tile_priority,
73 const gfx::Transform& transform_for_tile_priority);
74 void ReturnResources(const cc::CompositorFrameAck& frame_ack);
75 scoped_ptr<cc::CompositorFrame> DemandDrawSw(SkCanvas* canvas);
76 void SetMemoryPolicy(size_t bytes_limit);
77 void SetTreeActivationCallback(const base::Closure& callback);
78 void GetMessagesToDeliver(ScopedVector<IPC::Message>* messages);
80 private:
81 class SoftwareDevice;
82 friend class SoftwareDevice;
84 void InvokeComposite(const gfx::Transform& transform,
85 gfx::Rect viewport,
86 gfx::Rect clip,
87 gfx::Rect viewport_rect_for_tile_priority,
88 gfx::Transform transform_for_tile_priority,
89 bool hardware_draw);
90 bool CalledOnValidThread() const;
92 const int routing_id_;
93 bool registered_;
95 gfx::Transform cached_hw_transform_;
96 gfx::Rect cached_hw_viewport_;
97 gfx::Rect cached_hw_clip_;
98 gfx::Rect cached_hw_viewport_rect_for_tile_priority_;
99 gfx::Transform cached_hw_transform_for_tile_priority_;
101 // Only valid (non-NULL) during a DemandDrawSw() call.
102 SkCanvas* current_sw_canvas_;
104 cc::ManagedMemoryPolicy memory_policy_;
106 cc::OutputSurfaceClient* output_surface_client_;
107 scoped_ptr<cc::CompositorFrame> frame_holder_;
109 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_;
111 SynchronousCompositorExternalBeginFrameSource* begin_frame_source_;
113 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface);
116 } // namespace content
118 #endif // CONTENT_BROWSER_ANDROID_IN_PROCESS_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_