Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(731)

Side by Side Diff: content/common/gpu/gpu_channel.cc

Issue 9289052: Adding GpuMemoryManager to track GpuCommandBufferStub visibility and last_used_time and dictate mem… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/gpu/gpu_channel.h ('k') | content/common/gpu/gpu_channel_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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)
OLDNEW
« no previous file with comments | « content/common/gpu/gpu_channel.h ('k') | content/common/gpu/gpu_channel_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698