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

Unified Diff: gpu/command_buffer/tests/gl_manager.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 NamespaceID and CommandBufferID for CommandBufferLocal 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/tests/gl_manager.cc
diff --git a/gpu/command_buffer/tests/gl_manager.cc b/gpu/command_buffer/tests/gl_manager.cc
index c5f70877703c8fb7d519bcd6eb18cf97274e0132..0dbbde59874ae627af71740b1f43ca0586d5099a 100644
--- a/gpu/command_buffer/tests/gl_manager.cc
+++ b/gpu/command_buffer/tests/gl_manager.cc
@@ -438,4 +438,12 @@ bool GLManager::IsGpuChannelLost() {
return false;
}
+gpu::CommandBufferNamespace GLManager::GetNamespaceID() const {
+ return gpu::kCommandBufferNamespace_InProcess;
+}
+
+uint64_t GLManager::GetCommandBufferID() const {
+ return 0;
+}
+
} // namespace gpu

Powered by Google App Engine
This is Rietveld 408576698