OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ | 5 #ifndef MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ |
6 #define MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ | 6 #define MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/timer/timer.h" | 9 #include "base/timer/timer.h" |
10 #include "mojo/public/cpp/system/core.h" | 10 #include "mojo/public/cpp/system/core.h" |
11 #include "mojo/services/gles2/command_buffer.mojom.h" | 11 #include "mojo/services/gles2/command_buffer.mojom.h" |
12 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
13 #include "ui/gfx/size.h" | 13 #include "ui/gfx/size.h" |
14 | 14 |
15 namespace gpu { | 15 namespace gpu { |
16 class CommandBufferService; | 16 class CommandBufferService; |
17 class GpuScheduler; | 17 class GpuScheduler; |
18 class GpuControlService; | 18 class GpuControlService; |
19 namespace gles2 { | 19 namespace gles2 { |
20 class GLES2Decoder; | 20 class GLES2Decoder; |
| 21 class MailboxManager; |
21 } | 22 } |
22 } | 23 } |
23 | 24 |
24 namespace gfx { | 25 namespace gfx { |
| 26 class GLContext; |
| 27 class GLShareGroup; |
25 class GLSurface; | 28 class GLSurface; |
26 } | 29 } |
27 | 30 |
28 namespace mojo { | 31 namespace mojo { |
29 namespace services { | 32 namespace services { |
30 | 33 |
31 class CommandBufferImpl : public InterfaceImpl<CommandBuffer> { | 34 class CommandBufferImpl : public InterfaceImpl<CommandBuffer> { |
32 public: | 35 public: |
| 36 // Offscreen. |
| 37 CommandBufferImpl(gfx::GLShareGroup* share_group, |
| 38 gpu::gles2::MailboxManager* mailbox_manager); |
| 39 // Onscreen. |
33 CommandBufferImpl(gfx::AcceleratedWidget widget, | 40 CommandBufferImpl(gfx::AcceleratedWidget widget, |
34 const gfx::Size& size); | 41 const gfx::Size& size, |
| 42 gfx::GLShareGroup* share_group, |
| 43 gpu::gles2::MailboxManager* mailbox_manager); |
35 virtual ~CommandBufferImpl(); | 44 virtual ~CommandBufferImpl(); |
36 | 45 |
37 virtual void Initialize(CommandBufferSyncClientPtr sync_client, | 46 virtual void Initialize(CommandBufferSyncClientPtr sync_client, |
38 mojo::ScopedSharedBufferHandle shared_state) OVERRIDE; | 47 mojo::ScopedSharedBufferHandle shared_state) OVERRIDE; |
39 virtual void SetGetBuffer(int32_t buffer) OVERRIDE; | 48 virtual void SetGetBuffer(int32_t buffer) OVERRIDE; |
40 virtual void Flush(int32_t put_offset) OVERRIDE; | 49 virtual void Flush(int32_t put_offset) OVERRIDE; |
41 virtual void MakeProgress(int32_t last_get_offset) OVERRIDE; | 50 virtual void MakeProgress(int32_t last_get_offset) OVERRIDE; |
42 virtual void RegisterTransferBuffer( | 51 virtual void RegisterTransferBuffer( |
43 int32_t id, | 52 int32_t id, |
44 mojo::ScopedSharedBufferHandle transfer_buffer, | 53 mojo::ScopedSharedBufferHandle transfer_buffer, |
45 uint32_t size) OVERRIDE; | 54 uint32_t size) OVERRIDE; |
46 virtual void DestroyTransferBuffer(int32_t id) OVERRIDE; | 55 virtual void DestroyTransferBuffer(int32_t id) OVERRIDE; |
47 virtual void Echo(const Callback<void()>& callback) OVERRIDE; | 56 virtual void Echo(const Callback<void()>& callback) OVERRIDE; |
48 | 57 |
49 private: | 58 private: |
50 bool DoInitialize(mojo::ScopedSharedBufferHandle shared_state); | 59 bool DoInitialize(mojo::ScopedSharedBufferHandle shared_state); |
51 | 60 |
52 void OnResize(gfx::Size size, float scale_factor); | 61 void OnResize(gfx::Size size, float scale_factor); |
53 | 62 |
54 void OnParseError(); | 63 void OnParseError(); |
55 | 64 |
56 CommandBufferSyncClientPtr sync_client_; | 65 CommandBufferSyncClientPtr sync_client_; |
57 | 66 |
58 gfx::AcceleratedWidget widget_; | 67 gfx::AcceleratedWidget widget_; |
59 gfx::Size size_; | 68 gfx::Size size_; |
60 scoped_ptr<gpu::CommandBufferService> command_buffer_; | 69 scoped_ptr<gpu::CommandBufferService> command_buffer_; |
61 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; | 70 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; |
62 scoped_ptr<gpu::GpuScheduler> scheduler_; | 71 scoped_ptr<gpu::GpuScheduler> scheduler_; |
| 72 scoped_refptr<gfx::GLContext> context_; |
63 scoped_refptr<gfx::GLSurface> surface_; | 73 scoped_refptr<gfx::GLSurface> surface_; |
| 74 scoped_refptr<gfx::GLShareGroup> share_group_; |
| 75 scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_; |
64 | 76 |
65 DISALLOW_COPY_AND_ASSIGN(CommandBufferImpl); | 77 DISALLOW_COPY_AND_ASSIGN(CommandBufferImpl); |
66 }; | 78 }; |
67 | 79 |
68 } // namespace services | 80 } // namespace services |
69 } // namespace mojo | 81 } // namespace mojo |
70 | 82 |
71 #endif // MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ | 83 #endif // MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ |
OLD | NEW |