synchronous_compositor.h revision 1320f92c476a1ad9d19dba2a48c72b75566198e9
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.
4
5#ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
6#define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
7
8#include "base/memory/ref_counted.h"
9#include "content/common/content_export.h"
10#include "gpu/command_buffer/service/in_process_command_buffer.h"
11#include "ui/gfx/rect.h"
12#include "ui/gfx/size.h"
13
14class SkCanvas;
15
16namespace cc {
17class CompositorFrame;
18class CompositorFrameAck;
19}
20
21namespace gfx {
22class Transform;
23};
24
25namespace gpu {
26class GLInProcessContext;
27}
28
29namespace content {
30
31class SynchronousCompositorClient;
32class WebContents;
33
34struct CONTENT_EXPORT SynchronousCompositorMemoryPolicy {
35  // Memory limit for rendering and pre-rendering.
36  size_t bytes_limit;
37
38  // Limit of number of GL resources used for rendering and pre-rendering.
39  size_t num_resources_limit;
40
41  SynchronousCompositorMemoryPolicy();
42
43  bool operator==(const SynchronousCompositorMemoryPolicy& other) const;
44  bool operator!=(const SynchronousCompositorMemoryPolicy& other) const;
45};
46
47// Interface for embedders that wish to direct compositing operations
48// synchronously under their own control. Only meaningful when the
49// kEnableSyncrhonousRendererCompositor flag is specified.
50class CONTENT_EXPORT SynchronousCompositor {
51 public:
52  // Must be called once per WebContents instance. Will create the compositor
53  // instance as needed, but only if |client| is non-NULL.
54  static void SetClientForWebContents(WebContents* contents,
55                                      SynchronousCompositorClient* client);
56
57  // Allows changing or resetting the client to NULL (this must be used if
58  // the client is being deleted prior to the DidDestroyCompositor() call
59  // being received by the client). Ownership of |client| remains with
60  // the caller.
61  virtual void SetClient(SynchronousCompositorClient* client) = 0;
62
63  static void SetGpuService(
64      scoped_refptr<gpu::InProcessCommandBuffer::Service> service);
65
66  // By default, synchronous compopsitor records the full layer, not only
67  // what is inside and around the view port. This can be used to switch
68  // between this record-full-layer behavior and normal record-around-viewport
69  // behavior.
70  static void SetRecordFullDocument(bool record_full_document);
71
72  // Synchronously initialize compositor for hardware draw. Can only be called
73  // while compositor is in software only mode, either after compositor is
74  // first created or after ReleaseHwDraw is called. It is invalid to
75  // DemandDrawHw before this returns true.
76  virtual bool InitializeHwDraw() = 0;
77
78  // Reverse of InitializeHwDraw above. Can only be called while hardware draw
79  // is already initialized. Brings compositor back to software only mode and
80  // releases all hardware resources.
81  virtual void ReleaseHwDraw() = 0;
82
83  // "On demand" hardware draw. The content is first clipped to |damage_area|,
84  // then transformed through |transform|, and finally clipped to |view_size|.
85  virtual scoped_ptr<cc::CompositorFrame> DemandDrawHw(
86      gfx::Size surface_size,
87      const gfx::Transform& transform,
88      gfx::Rect viewport,
89      gfx::Rect clip,
90      gfx::Rect viewport_rect_for_tile_priority,
91      const gfx::Transform& transform_for_tile_priority) = 0;
92
93  // For delegated rendering, return resources from parent compositor to this.
94  // Note that all resources must be returned before ReleaseHwDraw.
95  virtual void ReturnResources(const cc::CompositorFrameAck& frame_ack) = 0;
96
97  // "On demand" SW draw, into the supplied canvas (observing the transform
98  // and clip set there-in).
99  virtual bool DemandDrawSw(SkCanvas* canvas) = 0;
100
101  // Set the memory limit policy of this compositor.
102  virtual void SetMemoryPolicy(
103      const SynchronousCompositorMemoryPolicy& policy) = 0;
104
105  // Should be called by the embedder after the embedder had modified the
106  // scroll offset of the root layer (as returned by
107  // SynchronousCompositorClient::GetTotalRootLayerScrollOffset).
108  virtual void DidChangeRootLayerScrollOffset() = 0;
109
110 protected:
111  virtual ~SynchronousCompositor() {}
112};
113
114}  // namespace content
115
116#endif  // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_H_
117