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

Unified Diff: content/common/gpu/client/command_buffer_proxy_impl.cc

Issue 12330129: Make WaitSyncPoint go through command buffers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 7 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 side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/client/command_buffer_proxy_impl.cc
diff --git a/content/common/gpu/client/command_buffer_proxy_impl.cc b/content/common/gpu/client/command_buffer_proxy_impl.cc
index addf767831600fb6f00db2a16265efa467996a92..49cb0a3ea35b1d44f1ffb06669d532acb81d7656 100644
--- a/content/common/gpu/client/command_buffer_proxy_impl.cc
+++ b/content/common/gpu/client/command_buffer_proxy_impl.cc
@@ -398,10 +398,6 @@ uint32 CommandBufferProxyImpl::InsertSyncPoint() {
return sync_point;
}
-void CommandBufferProxyImpl::WaitSyncPoint(uint32 sync_point) {
- Send(new GpuCommandBufferMsg_WaitSyncPoint(route_id_, sync_point));
-}
-
bool CommandBufferProxyImpl::SignalSyncPoint(uint32 sync_point,
const base::Closure& callback) {
if (last_state_.error != gpu::error::kNoError) {

Powered by Google App Engine
This is Rietveld 408576698