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 COMPONENTS_GLES2_COMMAND_BUFFER_DRIVER_H_ | 5 #ifndef COMPONENTS_GLES2_COMMAND_BUFFER_DRIVER_H_ |
6 #define COMPONENTS_GLES2_COMMAND_BUFFER_DRIVER_H_ | 6 #define COMPONENTS_GLES2_COMMAND_BUFFER_DRIVER_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/memory/weak_ptr.h" |
11 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
12 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
13 #include "components/gpu/public/interfaces/command_buffer.mojom.h" | 14 #include "components/gpu/public/interfaces/command_buffer.mojom.h" |
14 #include "ui/gfx/geometry/size.h" | 15 #include "ui/gfx/geometry/size.h" |
15 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
16 | 17 |
17 namespace gpu { | 18 namespace gpu { |
18 class CommandBufferService; | 19 class CommandBufferService; |
19 class GpuScheduler; | 20 class GpuScheduler; |
20 class GpuControlService; | 21 class GpuControlService; |
21 class SyncPointManager; | 22 class SyncPointManager; |
22 namespace gles2 { | 23 namespace gles2 { |
23 class GLES2Decoder; | 24 class GLES2Decoder; |
24 class MailboxManager; | 25 class MailboxManager; |
25 } | 26 } |
26 } | 27 } |
27 | 28 |
28 namespace gfx { | 29 namespace gfx { |
29 class GLContext; | 30 class GLContext; |
30 class GLShareGroup; | 31 class GLShareGroup; |
31 class GLSurface; | 32 class GLSurface; |
32 } | 33 } |
33 | 34 |
34 namespace gles2 { | 35 namespace gles2 { |
35 | 36 |
| 37 // This class receives CommandBuffer messages on the same thread as the native |
| 38 // viewport. It is usually destructed on that thread, however if the native |
| 39 // viewport app is destroyed before CommandBufferImpl, then the latter's failed |
| 40 // PostTask will end up deleting this class on the control thread. |
36 class CommandBufferDriver { | 41 class CommandBufferDriver { |
37 public: | 42 public: |
38 class Client { | 43 class Client { |
39 public: | 44 public: |
40 virtual ~Client(); | 45 virtual ~Client(); |
41 virtual void UpdateVSyncParameters(base::TimeTicks timebase, | 46 virtual void UpdateVSyncParameters(base::TimeTicks timebase, |
42 base::TimeDelta interval) = 0; | 47 base::TimeDelta interval) = 0; |
43 virtual void DidLoseContext() = 0; | 48 virtual void DidLoseContext() = 0; |
44 }; | 49 }; |
45 // Offscreen. | 50 // Offscreen. |
46 CommandBufferDriver(gfx::GLShareGroup* share_group, | 51 CommandBufferDriver(gfx::GLShareGroup* share_group, |
47 gpu::gles2::MailboxManager* mailbox_manager, | 52 gpu::gles2::MailboxManager* mailbox_manager, |
48 gpu::SyncPointManager* sync_point_manager); | 53 gpu::SyncPointManager* sync_point_manager); |
49 // Onscreen. | 54 // Onscreen. |
50 CommandBufferDriver(gfx::AcceleratedWidget widget, | 55 CommandBufferDriver( |
51 gfx::GLShareGroup* share_group, | 56 gfx::AcceleratedWidget widget, |
52 gpu::gles2::MailboxManager* mailbox_manager, | 57 gfx::GLShareGroup* share_group, |
53 gpu::SyncPointManager* sync_point_manager); | 58 gpu::gles2::MailboxManager* mailbox_manager, |
| 59 gpu::SyncPointManager* sync_point_manager, |
| 60 const base::Callback<void(CommandBufferDriver*)>& destruct_callback); |
54 ~CommandBufferDriver(); | 61 ~CommandBufferDriver(); |
55 | 62 |
56 void set_client(scoped_ptr<Client> client) { client_ = client.Pass(); } | 63 void set_client(scoped_ptr<Client> client) { client_ = client.Pass(); } |
57 | 64 |
58 void Initialize(mojo::CommandBufferSyncClientPtr sync_client, | 65 void Initialize(mojo::CommandBufferSyncClientPtr sync_client, |
59 mojo::CommandBufferLostContextObserverPtr loss_observer, | 66 mojo::CommandBufferLostContextObserverPtr loss_observer, |
60 mojo::ScopedSharedBufferHandle shared_state); | 67 mojo::ScopedSharedBufferHandle shared_state); |
61 void SetGetBuffer(int32_t buffer); | 68 void SetGetBuffer(int32_t buffer); |
62 void Flush(int32_t put_offset); | 69 void Flush(int32_t put_offset); |
63 void MakeProgress(int32_t last_get_offset); | 70 void MakeProgress(int32_t last_get_offset); |
64 void RegisterTransferBuffer(int32_t id, | 71 void RegisterTransferBuffer(int32_t id, |
65 mojo::ScopedSharedBufferHandle transfer_buffer, | 72 mojo::ScopedSharedBufferHandle transfer_buffer, |
66 uint32_t size); | 73 uint32_t size); |
67 void DestroyTransferBuffer(int32_t id); | 74 void DestroyTransferBuffer(int32_t id); |
68 void Echo(const mojo::Callback<void()>& callback); | 75 void Echo(const mojo::Callback<void()>& callback); |
69 | 76 |
| 77 // Called at shutdown to destroy the X window. This is needed when the parent |
| 78 // window is being destroyed. Otherwise X calls for this window will fail. |
| 79 void DestroyWindow(); |
| 80 |
70 private: | 81 private: |
71 bool DoInitialize(mojo::ScopedSharedBufferHandle shared_state); | 82 bool DoInitialize(mojo::ScopedSharedBufferHandle shared_state); |
72 void OnResize(gfx::Size size, float scale_factor); | 83 void OnResize(gfx::Size size, float scale_factor); |
73 bool OnWaitSyncPoint(uint32_t sync_point); | 84 bool OnWaitSyncPoint(uint32_t sync_point); |
74 void OnSyncPointRetired(); | 85 void OnSyncPointRetired(); |
75 void OnParseError(); | 86 void OnParseError(); |
76 void OnContextLost(uint32_t reason); | 87 void OnContextLost(uint32_t reason); |
77 void OnUpdateVSyncParameters(const base::TimeTicks timebase, | 88 void OnUpdateVSyncParameters(const base::TimeTicks timebase, |
78 const base::TimeDelta interval); | 89 const base::TimeDelta interval); |
| 90 void DestroyDecoder(); |
79 | 91 |
80 scoped_ptr<Client> client_; | 92 scoped_ptr<Client> client_; |
81 mojo::CommandBufferSyncClientPtr sync_client_; | 93 mojo::CommandBufferSyncClientPtr sync_client_; |
82 mojo::CommandBufferLostContextObserverPtr loss_observer_; | 94 mojo::CommandBufferLostContextObserverPtr loss_observer_; |
83 gfx::AcceleratedWidget widget_; | 95 gfx::AcceleratedWidget widget_; |
84 scoped_ptr<gpu::CommandBufferService> command_buffer_; | 96 scoped_ptr<gpu::CommandBufferService> command_buffer_; |
85 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; | 97 scoped_ptr<gpu::gles2::GLES2Decoder> decoder_; |
86 scoped_ptr<gpu::GpuScheduler> scheduler_; | 98 scoped_ptr<gpu::GpuScheduler> scheduler_; |
87 scoped_refptr<gfx::GLContext> context_; | 99 scoped_refptr<gfx::GLContext> context_; |
88 scoped_refptr<gfx::GLSurface> surface_; | 100 scoped_refptr<gfx::GLSurface> surface_; |
89 scoped_refptr<gfx::GLShareGroup> share_group_; | 101 scoped_refptr<gfx::GLShareGroup> share_group_; |
90 scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_; | 102 scoped_refptr<gpu::gles2::MailboxManager> mailbox_manager_; |
91 scoped_refptr<gpu::SyncPointManager> sync_point_manager_; | 103 scoped_refptr<gpu::SyncPointManager> sync_point_manager_; |
92 | 104 |
93 scoped_refptr<base::SingleThreadTaskRunner> context_lost_task_runner_; | 105 scoped_refptr<base::SingleThreadTaskRunner> context_lost_task_runner_; |
94 base::Callback<void(int32_t)> context_lost_callback_; | 106 base::Callback<void(int32_t)> context_lost_callback_; |
95 | 107 |
| 108 base::Callback<void(CommandBufferDriver*)> destruct_callback_; |
| 109 |
96 base::WeakPtrFactory<CommandBufferDriver> weak_factory_; | 110 base::WeakPtrFactory<CommandBufferDriver> weak_factory_; |
97 | 111 |
98 DISALLOW_COPY_AND_ASSIGN(CommandBufferDriver); | 112 DISALLOW_COPY_AND_ASSIGN(CommandBufferDriver); |
99 }; | 113 }; |
100 | 114 |
101 } // namespace gles2 | 115 } // namespace gles2 |
102 | 116 |
103 #endif // COMPONENTS_GLES2_COMMAND_BUFFER_DRIVER_H_ | 117 #endif // COMPONENTS_GLES2_COMMAND_BUFFER_DRIVER_H_ |
OLD | NEW |