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 #if defined(OS_WIN) | 5 #if defined(OS_WIN) |
6 #include <windows.h> | 6 #include <windows.h> |
7 #endif | 7 #endif |
8 | 8 |
9 #include "content/common/gpu/gpu_channel.h" | 9 #include "content/common/gpu/gpu_channel.h" |
10 | 10 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 } | 128 } |
129 | 129 |
130 if (!channel_.get()) { | 130 if (!channel_.get()) { |
131 delete message; | 131 delete message; |
132 return false; | 132 return false; |
133 } | 133 } |
134 | 134 |
135 return channel_->Send(message); | 135 return channel_->Send(message); |
136 } | 136 } |
137 | 137 |
| 138 void GpuChannel::AppendAllCommandBufferStubs( |
| 139 std::vector<GpuCommandBufferStubBase*>& stubs) { |
| 140 for (StubMap::Iterator<GpuCommandBufferStub> it(&stubs_); |
| 141 !it.IsAtEnd(); it.Advance()) { |
| 142 stubs.push_back(it.GetCurrentValue()); |
| 143 } |
| 144 } |
| 145 |
138 bool GpuChannel::IsScheduled() { | 146 bool GpuChannel::IsScheduled() { |
139 for (StubMap::Iterator<GpuCommandBufferStub> it(&stubs_); | 147 for (StubMap::Iterator<GpuCommandBufferStub> it(&stubs_); |
140 !it.IsAtEnd(); | 148 !it.IsAtEnd(); |
141 it.Advance()) { | 149 it.Advance()) { |
142 GpuCommandBufferStub* stub = it.GetCurrentValue(); | 150 GpuCommandBufferStub* stub = it.GetCurrentValue(); |
143 if (!stub->IsScheduled()) | 151 if (!stub->IsScheduled()) |
144 return false; | 152 return false; |
145 } | 153 } |
146 | 154 |
147 return true; | 155 return true; |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 | 440 |
433 #if defined(OS_POSIX) | 441 #if defined(OS_POSIX) |
434 int GpuChannel::TakeRendererFileDescriptor() { | 442 int GpuChannel::TakeRendererFileDescriptor() { |
435 if (!channel_.get()) { | 443 if (!channel_.get()) { |
436 NOTREACHED(); | 444 NOTREACHED(); |
437 return -1; | 445 return -1; |
438 } | 446 } |
439 return channel_->TakeClientFileDescriptor(); | 447 return channel_->TakeClientFileDescriptor(); |
440 } | 448 } |
441 #endif // defined(OS_POSIX) | 449 #endif // defined(OS_POSIX) |
OLD | NEW |