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

Unified Diff: components/mus/gles2/command_buffer_driver.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: Added gpu namespace for gles2_conform_support/egl/display.cc 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 | « no previous file | components/mus/gles2/command_buffer_local.cc » ('j') | content/common/gpu/gpu_messages.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/gles2/command_buffer_driver.cc
diff --git a/components/mus/gles2/command_buffer_driver.cc b/components/mus/gles2/command_buffer_driver.cc
index 7207b037228901aa4f086a5b72f93c8811201d1a..11b6c7de0af50e8304000f783a85f36644c82e8e 100644
--- a/components/mus/gles2/command_buffer_driver.cc
+++ b/components/mus/gles2/command_buffer_driver.cc
@@ -98,7 +98,8 @@ bool CommandBufferDriver::DoInitialize(
nullptr, bind_generates_resource);
command_buffer_.reset(
- new gpu::CommandBufferService(context_group->transfer_buffer_manager()));
+ new gpu::CommandBufferService(context_group->transfer_buffer_manager(),
+ kCommandBufferNamespace_Invalid, 0));
piman 2015/09/15 22:51:05 I guess we need a namespace for mojo too.
David Yen 2015/09/15 23:09:03 I'm not too familiar with mojo, does this class ha
bool result = command_buffer_->Initialize();
DCHECK(result);
« no previous file with comments | « no previous file | components/mus/gles2/command_buffer_local.cc » ('j') | content/common/gpu/gpu_messages.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698