OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "base/macros.h" | 5 #include "base/macros.h" |
6 #include "base/memory/ref_counted.h" | 6 #include "base/memory/ref_counted.h" |
7 #include "mojo/public/cpp/bindings/interface_impl.h" | 7 #include "mojo/public/cpp/bindings/interface_impl.h" |
8 #include "mojo/public/cpp/bindings/interface_request.h" | 8 #include "mojo/public/cpp/bindings/interface_request.h" |
9 #include "mojo/services/public/interfaces/geometry/geometry.mojom.h" | 9 #include "mojo/services/public/interfaces/geometry/geometry.mojom.h" |
10 #include "mojo/services/public/interfaces/gpu/command_buffer.mojom.h" | 10 #include "mojo/services/public/interfaces/gpu/command_buffer.mojom.h" |
11 #include "mojo/services/public/interfaces/gpu/gpu.mojom.h" | 11 #include "mojo/services/public/interfaces/gpu/gpu.mojom.h" |
12 | 12 |
13 namespace gfx { | 13 namespace gfx { |
14 class GLShareGroup; | 14 class GLShareGroup; |
15 } | 15 } |
16 | 16 |
17 namespace gpu { | 17 namespace gpu { |
18 namespace gles2 { | 18 namespace gles2 { |
19 class MailboxManager; | 19 class MailboxManager; |
20 } | 20 } |
21 } | 21 } |
22 | 22 |
23 namespace mojo { | 23 namespace mojo { |
24 | 24 |
25 class GpuImpl : public InterfaceImpl<Gpu> { | 25 class GpuImpl : public InterfaceImpl<Gpu> { |
26 public: | 26 public: |
27 GpuImpl(const scoped_refptr<gfx::GLShareGroup>& share_group, | 27 GpuImpl(const scoped_refptr<gfx::GLShareGroup>& share_group, |
28 const scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager); | 28 const scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager); |
29 | 29 |
30 virtual ~GpuImpl(); | 30 ~GpuImpl() override; |
31 | 31 |
32 virtual void CreateOnscreenGLES2Context( | 32 void CreateOnscreenGLES2Context( |
33 uint64_t native_viewport_id, | 33 uint64_t native_viewport_id, |
34 SizePtr size, | 34 SizePtr size, |
35 InterfaceRequest<CommandBuffer> command_buffer_request) override; | 35 InterfaceRequest<CommandBuffer> command_buffer_request) override; |
36 | 36 |
37 virtual void CreateOffscreenGLES2Context( | 37 void CreateOffscreenGLES2Context( |
38 InterfaceRequest<CommandBuffer> command_buffer_request) override; | 38 InterfaceRequest<CommandBuffer> command_buffer_request) override; |
39 | 39 |
40 private: | 40 private: |
41 // We need to share these across all NativeViewport instances so that contexts | 41 // We need to share these across all NativeViewport instances so that contexts |
42 // they create can share resources with each other via mailboxes. | 42 // they create can share resources with each other via mailboxes. |
43 scoped_refptr<gfx::GLShareGroup> share_group_; | 43 scoped_refptr<gfx::GLShareGroup> share_group_; |
44 scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_; | 44 scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_; |
45 | 45 |
46 DISALLOW_COPY_AND_ASSIGN(GpuImpl); | 46 DISALLOW_COPY_AND_ASSIGN(GpuImpl); |
47 }; | 47 }; |
48 | 48 |
49 } // namespace mojo | 49 } // namespace mojo |
OLD | NEW |