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

Unified Diff: gpu/command_buffer/service/command_buffer_service.cc

Issue 1331843005: Implemented new fence syncs which replaces the old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some fixes Created 5 years, 3 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: gpu/command_buffer/service/command_buffer_service.cc
diff --git a/gpu/command_buffer/service/command_buffer_service.cc b/gpu/command_buffer/service/command_buffer_service.cc
index 0ea4b54e2cfe77f84eb58b001cd2f7240633639c..9cb90ab4ed497754387030014de8cb7c30d253fb 100644
--- a/gpu/command_buffer/service/command_buffer_service.cc
+++ b/gpu/command_buffer/service/command_buffer_service.cc
@@ -153,6 +153,15 @@ void CommandBufferService::DestroyTransferBuffer(int32 id) {
}
}
+void CommandBufferService::GetRouteInformation(int* channel_id,
+ uint32_t* route_id) {
+ if (channel_id)
+ *channel_id = 0;
+
+ if (route_id)
+ *route_id = 0;
+}
+
scoped_refptr<Buffer> CommandBufferService::GetTransferBuffer(int32 id) {
return transfer_buffer_manager_->GetTransferBuffer(id);
}

Powered by Google App Engine
This is Rietveld 408576698