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

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: Fix bad merge 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
« no previous file with comments | « content/renderer/pepper/resource_creation_impl.h ('k') | gpu/command_buffer/client/client_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d23c0021af6d7ee3e0ca3ff8cba0e4e4ce88e9bb..929f8ad7b315e043136cf79cccc7debc37e9eb42 100644
--- a/content/renderer/pepper/resource_creation_impl.cc
+++ b/content/renderer/pepper/resource_creation_impl.cc
@@ -122,9 +122,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,
+ uint64_t* command_buffer_id) {
return PPB_Graphics3D_Impl::CreateRaw(instance, share_context, attrib_list,
- capabilities, shared_state);
+ capabilities, shared_state,
+ command_buffer_id);
}
PP_Resource ResourceCreationImpl::CreateHostResolver(PP_Instance instance) {
« no previous file with comments | « content/renderer/pepper/resource_creation_impl.h ('k') | gpu/command_buffer/client/client_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698