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

Unified Diff: gpu/command_buffer/common/command_buffer.h

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/common/command_buffer.h
diff --git a/gpu/command_buffer/common/command_buffer.h b/gpu/command_buffer/common/command_buffer.h
index b69936320eca53013c0110d77743644c97c14834..8d71e4e7e64e77d90505d463afc5ba8e8ac0937c 100644
--- a/gpu/command_buffer/common/command_buffer.h
+++ b/gpu/command_buffer/common/command_buffer.h
@@ -115,6 +115,9 @@ class GPU_EXPORT CommandBuffer {
// Destroy a transfer buffer. The ID must be positive.
virtual void DestroyTransferBuffer(int32 id) = 0;
+ // Get Routing information.
+ virtual void GetRouteInformation(int* channel_id, uint32_t* route_id) = 0;
piman 2015/09/10 23:55:32 Because this is only used on the client side, you
David Yen 2015/09/23 18:30:34 No longer relevant.
+
// The NaCl Win64 build only really needs the struct definitions above; having
// GetLastError declared would mean we'd have to also define it, and pull more
// of gpu in to the NaCl Win64 build.

Powered by Google App Engine
This is Rietveld 408576698