~abreu-alexandre/oxide/remove-chromedriver-build

« back to all changes in this revision

Viewing changes to shared/browser/compositor/oxide_compositor_single_thread_proxy.h

  • Committer: Chris Coulson
  • Date: 2016-02-26 18:27:48 UTC
  • Revision ID: chris.coulson@canonical.com-20160226182748-bqhc23qxs09cpg33
Switch to a single-threaded webview compositor

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim:expandtab:shiftwidth=2:tabstop=2:
 
2
// Copyright (C) 2016 Canonical Ltd.
 
3
 
 
4
// This library is free software; you can redistribute it and/or
 
5
// modify it under the terms of the GNU Lesser General Public
 
6
// License as published by the Free Software Foundation; either
 
7
// version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
// This library is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
// Lesser General Public License for more details.
 
13
 
 
14
// You should have received a copy of the GNU Lesser General Public
 
15
// License along with this library; if not, write to the Free Software
 
16
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
#ifndef _OXIDE_SHARED_BROWSER_COMPOSITOR_COMPOSITOR_SINGLE_THREAD_PROXY_H_
 
19
#define _OXIDE_SHARED_BROWSER_COMPOSITOR_COMPOSITOR_SINGLE_THREAD_PROXY_H_
 
20
 
 
21
#include "base/macros.h"
 
22
#include "base/threading/non_thread_safe.h"
 
23
 
 
24
#include "shared/browser/compositor/oxide_compositing_mode.h"
 
25
#include "shared/browser/compositor/oxide_compositor_proxy.h"
 
26
#include "shared/browser/compositor/oxide_mailbox_buffer_map.h"
 
27
 
 
28
namespace oxide {
 
29
 
 
30
class CompositorSingleThreadProxy : public CompositorProxy,
 
31
                                    public base::NonThreadSafe {
 
32
 public:
 
33
  CompositorSingleThreadProxy(CompositorProxyClient* client);
 
34
  ~CompositorSingleThreadProxy() override;
 
35
 
 
36
 private:
 
37
  // Response from CompositorUtils::GetTextureFromMailbox
 
38
  void GetTextureFromMailboxResponse(uint32_t surface_id,
 
39
                                     const gpu::Mailbox& mailbox,
 
40
                                     GLuint texture);
 
41
 
 
42
  // Response from CompositorUtils::CreateEGLImageFromMailbox
 
43
  void CreateEGLImageFromMailboxResponse(uint32_t surface_id,
 
44
                                         const gpu::Mailbox& mailbox,
 
45
                                         EGLImageKHR egl_image);
 
46
 
 
47
  void DidCompleteGLFrame(scoped_ptr<CompositorFrameData> frame);
 
48
 
 
49
  // CompositorProxy implementation
 
50
  void SetOutputSurface(CompositorOutputSurface* output_surface) override;
 
51
  void MailboxBufferCreated(const gpu::Mailbox& mailbox,
 
52
                            uint64_t sync_point) override;
 
53
  void MailboxBufferDestroyed(const gpu::Mailbox& mailbox) override;
 
54
  void SwapCompositorFrame(scoped_ptr<CompositorFrameData> frame) override;
 
55
  void DidSwapCompositorFrame(uint32_t surface_id,
 
56
                              FrameHandleVector returned_frames) override;
 
57
  void ReclaimResourcesForFrame(CompositorFrameData* frame) override;
 
58
 
 
59
  const CompositingMode mode_;
 
60
 
 
61
  CompositorOutputSurface* output_surface_;
 
62
 
 
63
  MailboxBufferMap mailbox_buffer_map_;
 
64
 
 
65
  DISALLOW_COPY_AND_ASSIGN(CompositorSingleThreadProxy);
 
66
};
 
67
 
 
68
} // namespace oxide
 
69
 
 
70
#endif // _OXIDE_SHARED_BROWSER_COMPOSITOR_COMPOSITOR_SINGLE_THREAD_PROXY_H_