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/bindings/remote_ptr.h" | |
11 #include "mojo/public/cpp/system/core.h" | 10 #include "mojo/public/cpp/system/core.h" |
12 #include "mojo/services/gles2/command_buffer.mojom.h" | 11 #include "mojo/services/gles2/command_buffer.mojom.h" |
13 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
14 #include "ui/gfx/size.h" | 13 #include "ui/gfx/size.h" |
15 | 14 |
16 namespace gpu { | 15 namespace gpu { |
17 class CommandBufferService; | 16 class CommandBufferService; |
18 class GpuScheduler; | 17 class GpuScheduler; |
19 class GpuControlService; | 18 class GpuControlService; |
20 namespace gles2 { | 19 namespace gles2 { |
21 class GLES2Decoder; | 20 class GLES2Decoder; |
22 } | 21 } |
23 } | 22 } |
24 | 23 |
25 namespace mojo { | 24 namespace mojo { |
26 namespace services { | 25 namespace services { |
27 | 26 |
28 class CommandBufferImpl : public CommandBuffer { | 27 class CommandBufferImpl : public InterfaceImpl<CommandBuffer> { |
29 public: | 28 public: |
30 CommandBufferImpl(ScopedCommandBufferClientHandle client, | 29 CommandBufferImpl(gfx::AcceleratedWidget widget, |
31 gfx::AcceleratedWidget widget, | |
32 const gfx::Size& size); | 30 const gfx::Size& size); |
33 virtual ~CommandBufferImpl(); | 31 virtual ~CommandBufferImpl(); |
34 | 32 |
35 virtual void Initialize(ScopedCommandBufferSyncClientHandle sync_client, | 33 virtual void OnConnectionError() OVERRIDE; |
| 34 virtual void SetClient(CommandBufferClient* client) OVERRIDE; |
| 35 virtual void Initialize(CommandBufferSyncClientPtr sync_client, |
36 mojo::ScopedSharedBufferHandle shared_state) OVERRIDE; | 36 mojo::ScopedSharedBufferHandle shared_state) OVERRIDE; |
37 virtual void SetGetBuffer(int32_t buffer) OVERRIDE; | 37 virtual void SetGetBuffer(int32_t buffer) OVERRIDE; |
38 virtual void Flush(int32_t put_offset) OVERRIDE; | 38 virtual void Flush(int32_t put_offset) OVERRIDE; |
39 virtual void MakeProgress(int32_t last_get_offset) OVERRIDE; | 39 virtual void MakeProgress(int32_t last_get_offset) OVERRIDE; |
40 virtual void RegisterTransferBuffer( | 40 virtual void RegisterTransferBuffer( |
41 int32_t id, | 41 int32_t id, |
42 mojo::ScopedSharedBufferHandle transfer_buffer, | 42 mojo::ScopedSharedBufferHandle transfer_buffer, |
43 uint32_t size) OVERRIDE; | 43 uint32_t size) OVERRIDE; |
44 virtual void DestroyTransferBuffer(int32_t id) OVERRIDE; | 44 virtual void DestroyTransferBuffer(int32_t id) OVERRIDE; |
45 virtual void Echo(const Callback<void()>& callback) OVERRIDE; | 45 virtual void Echo(const Callback<void()>& callback) OVERRIDE; |
46 | 46 |
47 virtual void RequestAnimationFrames() OVERRIDE; | 47 virtual void RequestAnimationFrames() OVERRIDE; |
48 virtual void CancelAnimationFrames() OVERRIDE; | 48 virtual void CancelAnimationFrames() OVERRIDE; |
49 | 49 |
50 private: | 50 private: |
51 bool DoInitialize(mojo::ScopedSharedBufferHandle shared_state); | 51 bool DoInitialize(mojo::ScopedSharedBufferHandle shared_state); |
52 | 52 |
53 void OnParseError(); | 53 void OnParseError(); |
54 | 54 |
55 void DrawAnimationFrame(); | 55 void DrawAnimationFrame(); |
56 | 56 |
57 RemotePtr<CommandBufferClient> client_; | 57 CommandBufferClient* client_; |
58 RemotePtr<CommandBufferSyncClient> sync_client_; | 58 CommandBufferSyncClientPtr sync_client_; |
59 | 59 |
60 gfx::AcceleratedWidget widget_; | 60 gfx::AcceleratedWidget widget_; |
61 gfx::Size size_; | 61 gfx::Size size_; |
62 scoped_ptr<gpu::CommandBufferService> command_buffer_; | 62 scoped_ptr<gpu::CommandBufferService> command_buffer_; |
63 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; | 63 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; |
64 scoped_ptr<gpu::GpuScheduler> scheduler_; | 64 scoped_ptr<gpu::GpuScheduler> scheduler_; |
65 scoped_ptr<gpu::GpuControlService> gpu_control_; | 65 scoped_ptr<gpu::GpuControlService> gpu_control_; |
66 base::RepeatingTimer<CommandBufferImpl> timer_; | 66 base::RepeatingTimer<CommandBufferImpl> timer_; |
67 | 67 |
68 DISALLOW_COPY_AND_ASSIGN(CommandBufferImpl); | 68 DISALLOW_COPY_AND_ASSIGN(CommandBufferImpl); |
69 }; | 69 }; |
70 | 70 |
71 } // namespace services | 71 } // namespace services |
72 } // namespace mojo | 72 } // namespace mojo |
73 | 73 |
74 #endif // MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ | 74 #endif // MOJO_SERVICES_GLES2_COMMAND_BUFFER_IMPL_H_ |
OLD | NEW |