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

Unified Diff: gpu/command_buffer/client/client_test_helper.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/client/client_test_helper.cc
diff --git a/gpu/command_buffer/client/client_test_helper.cc b/gpu/command_buffer/client/client_test_helper.cc
index 258e8217a846ababc37fbf3396832242c51897b9..87bb3f5dd8e406c03690e53431bd1a0143299a75 100644
--- a/gpu/command_buffer/client/client_test_helper.cc
+++ b/gpu/command_buffer/client/client_test_helper.cc
@@ -113,6 +113,15 @@ int32 MockCommandBufferBase::GetPutOffset() {
return put_offset_;
}
+void MockCommandBufferBase::GetRouteInformation(int* channel_id,
+ uint32_t* route_id) {
+ if (channel_id)
+ *channel_id = 0;
+
+ if (route_id)
+ *route_id = 0;
+}
+
// GCC requires these declarations, but MSVC requires they not be present
#ifndef _MSC_VER
const int32 MockCommandBufferBase::kTransferBufferBaseId;

Powered by Google App Engine
This is Rietveld 408576698