OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/common/gpu/gpu_channel_manager.h" | 5 #include "content/common/gpu/gpu_channel_manager.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "content/common/child_thread.h" | 8 #include "content/common/child_thread.h" |
9 #include "content/common/gpu/gpu_channel.h" | 9 #include "content/common/gpu/gpu_channel.h" |
10 #include "content/common/gpu/gpu_messages.h" | 10 #include "content/common/gpu/gpu_messages.h" |
| 11 #include "content/common/gpu/gpu_memory_manager.h" |
11 | 12 |
12 GpuChannelManager::GpuChannelManager(ChildThread* gpu_child_thread, | 13 GpuChannelManager::GpuChannelManager(ChildThread* gpu_child_thread, |
13 GpuWatchdog* watchdog, | 14 GpuWatchdog* watchdog, |
14 base::MessageLoopProxy* io_message_loop, | 15 base::MessageLoopProxy* io_message_loop, |
15 base::WaitableEvent* shutdown_event) | 16 base::WaitableEvent* shutdown_event) |
16 : ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)), | 17 : ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)), |
17 io_message_loop_(io_message_loop), | 18 io_message_loop_(io_message_loop), |
18 shutdown_event_(shutdown_event), | 19 shutdown_event_(shutdown_event), |
19 gpu_child_thread_(gpu_child_thread), | 20 gpu_child_thread_(gpu_child_thread), |
| 21 ALLOW_THIS_IN_INITIALIZER_LIST(gpu_memory_manager_(this, |
| 22 GpuMemoryManager::kDefaultMaxSurfacesWithFrontbufferSoftLimit)), |
20 watchdog_(watchdog) { | 23 watchdog_(watchdog) { |
21 DCHECK(gpu_child_thread); | 24 DCHECK(gpu_child_thread); |
22 DCHECK(io_message_loop); | 25 DCHECK(io_message_loop); |
23 DCHECK(shutdown_event); | 26 DCHECK(shutdown_event); |
24 } | 27 } |
25 | 28 |
26 GpuChannelManager::~GpuChannelManager() { | 29 GpuChannelManager::~GpuChannelManager() { |
27 gpu_channels_.clear(); | 30 gpu_channels_.clear(); |
28 } | 31 } |
29 | 32 |
(...skipping 16 matching lines...) Expand all Loading... |
46 } | 49 } |
47 | 50 |
48 GpuChannel* GpuChannelManager::LookupChannel(int32 client_id) { | 51 GpuChannel* GpuChannelManager::LookupChannel(int32 client_id) { |
49 GpuChannelMap::const_iterator iter = gpu_channels_.find(client_id); | 52 GpuChannelMap::const_iterator iter = gpu_channels_.find(client_id); |
50 if (iter == gpu_channels_.end()) | 53 if (iter == gpu_channels_.end()) |
51 return NULL; | 54 return NULL; |
52 else | 55 else |
53 return iter->second; | 56 return iter->second; |
54 } | 57 } |
55 | 58 |
| 59 void GpuChannelManager::AppendAllCommandBufferStubs( |
| 60 std::vector<GpuCommandBufferStubBase*>& stubs) { |
| 61 for (GpuChannelMap::const_iterator it = gpu_channels_.begin(); |
| 62 it != gpu_channels_.end(); ++it ) { |
| 63 it->second->AppendAllCommandBufferStubs(stubs); |
| 64 } |
| 65 |
| 66 } |
| 67 |
56 bool GpuChannelManager::OnMessageReceived(const IPC::Message& msg) { | 68 bool GpuChannelManager::OnMessageReceived(const IPC::Message& msg) { |
57 bool msg_is_ok = true; | 69 bool msg_is_ok = true; |
58 bool handled = true; | 70 bool handled = true; |
59 IPC_BEGIN_MESSAGE_MAP_EX(GpuChannelManager, msg, msg_is_ok) | 71 IPC_BEGIN_MESSAGE_MAP_EX(GpuChannelManager, msg, msg_is_ok) |
60 IPC_MESSAGE_HANDLER(GpuMsg_EstablishChannel, OnEstablishChannel) | 72 IPC_MESSAGE_HANDLER(GpuMsg_EstablishChannel, OnEstablishChannel) |
61 IPC_MESSAGE_HANDLER(GpuMsg_CloseChannel, OnCloseChannel) | 73 IPC_MESSAGE_HANDLER(GpuMsg_CloseChannel, OnCloseChannel) |
62 IPC_MESSAGE_HANDLER(GpuMsg_CreateViewCommandBuffer, | 74 IPC_MESSAGE_HANDLER(GpuMsg_CreateViewCommandBuffer, |
63 OnCreateViewCommandBuffer) | 75 OnCreateViewCommandBuffer) |
64 IPC_MESSAGE_UNHANDLED(handled = false) | 76 IPC_MESSAGE_UNHANDLED(handled = false) |
65 IPC_END_MESSAGE_MAP_EX() | 77 IPC_END_MESSAGE_MAP_EX() |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 void GpuChannelManager::LoseAllContexts() { | 146 void GpuChannelManager::LoseAllContexts() { |
135 MessageLoop::current()->PostTask( | 147 MessageLoop::current()->PostTask( |
136 FROM_HERE, | 148 FROM_HERE, |
137 base::Bind(&GpuChannelManager::OnLoseAllContexts, | 149 base::Bind(&GpuChannelManager::OnLoseAllContexts, |
138 weak_factory_.GetWeakPtr())); | 150 weak_factory_.GetWeakPtr())); |
139 } | 151 } |
140 | 152 |
141 void GpuChannelManager::OnLoseAllContexts() { | 153 void GpuChannelManager::OnLoseAllContexts() { |
142 gpu_channels_.clear(); | 154 gpu_channels_.clear(); |
143 } | 155 } |
OLD | NEW |