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

Unified Diff: ppapi/proxy/ppapi_command_buffer_proxy.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: ppapi/proxy/ppapi_command_buffer_proxy.cc
diff --git a/ppapi/proxy/ppapi_command_buffer_proxy.cc b/ppapi/proxy/ppapi_command_buffer_proxy.cc
index 7a42524bff2fe2827ffbce153f9d62f1a011b108..05f4e1233f8e1cb3baae26ac01492eaf39277f56 100644
--- a/ppapi/proxy/ppapi_command_buffer_proxy.cc
+++ b/ppapi/proxy/ppapi_command_buffer_proxy.cc
@@ -163,6 +163,15 @@ void PpapiCommandBufferProxy::DestroyTransferBuffer(int32 id) {
ppapi::API_ID_PPB_GRAPHICS_3D, resource_, id));
}
+void PpapiCommandBufferProxy::GetRouteInformation(int* channel_id,
+ uint32_t* route_id) {
+ if (channel_id)
+ *channel_id = 0;
+
+ if (route_id)
+ *route_id = 0;
piman 2015/09/10 23:55:32 We will need to reflect the real channel_id/route_
David Yen 2015/09/23 18:30:34 Done.
+}
+
uint32 PpapiCommandBufferProxy::CreateStreamTexture(uint32 texture_id) {
NOTREACHED();
return 0;

Powered by Google App Engine
This is Rietveld 408576698