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

Unified Diff: content/renderer/pepper/resource_creation_impl.cc

Issue 1345813002: Added a unique command buffer ID for command buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests 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: content/renderer/pepper/resource_creation_impl.cc
diff --git a/content/renderer/pepper/resource_creation_impl.cc b/content/renderer/pepper/resource_creation_impl.cc
index 7ffc70c115e8d8eae48a74961d8be3e456d9eb71..f530d8078bc6852cd98846f5e6204e6136c47d3a 100644
--- a/content/renderer/pepper/resource_creation_impl.cc
+++ b/content/renderer/pepper/resource_creation_impl.cc
@@ -118,9 +118,11 @@ PP_Resource ResourceCreationImpl::CreateGraphics3DRaw(
PP_Resource share_context,
const int32_t* attrib_list,
gpu::Capabilities* capabilities,
- base::SharedMemoryHandle* shared_state) {
+ base::SharedMemoryHandle* shared_state,
+ ppapi::CommandBufferIDPair* id_pair) {
return PPB_Graphics3D_Impl::CreateRaw(instance, share_context, attrib_list,
- capabilities, shared_state);
+ capabilities, shared_state,
+ id_pair);
}
PP_Resource ResourceCreationImpl::CreateHostResolver(PP_Instance instance) {

Powered by Google App Engine
This is Rietveld 408576698