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

Unified Diff: content/common/gpu/gpu_command_buffer_stub.cc

Issue 1489573003: Added an extra sync token field for extra command buffer identification. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/common/gpu/gpu_command_buffer_stub.cc
diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
index 39a75d2165055f20ca43cbe75afacd72bb67fcb4..e64b9c62300ba067179811020d4190e7c5510e5d 100644
--- a/content/common/gpu/gpu_command_buffer_stub.cc
+++ b/content/common/gpu/gpu_command_buffer_stub.cc
@@ -214,7 +214,7 @@ GpuCommandBufferStub::GpuCommandBufferStub(
if (share_group) {
context_group_ = share_group->context_group_;
- DCHECK(context_group_->bind_generates_resource() ==
+ DCHECK(context_group_->bind_generatse_resource() ==
piman 2015/11/30 20:59:23 ??
David Yen 2015/11/30 22:45:06 Strange... not sure how that happened. Reverted.
attrib_parser.bind_generates_resource);
} else {
context_group_ = new gpu::gles2::ContextGroup(
@@ -937,7 +937,7 @@ void GpuCommandBufferStub::OnRetireSyncPoint(uint32 sync_point) {
// We can simply use the global sync point number as the release count with
// 0 for the command buffer ID (under normal circumstances 0 is invalid so
// will not be used) until the old sync points are replaced.
- gpu::SyncToken sync_token(gpu::CommandBufferNamespace::GPU_IO, 0,
+ gpu::SyncToken sync_token(gpu::CommandBufferNamespace::GPU_IO, 0, 0,
sync_point);
mailbox_manager->PushTextureUpdates(sync_token);
}
@@ -993,7 +993,7 @@ void GpuCommandBufferStub::PullTextureUpdates(
gpu::gles2::MailboxManager* mailbox_manager =
context_group_->mailbox_manager();
if (mailbox_manager->UsesSync() && MakeCurrent()) {
- gpu::SyncToken sync_token(namespace_id, command_buffer_id, release);
+ gpu::SyncToken sync_token(namespace_id, 0, command_buffer_id, release);
mailbox_manager->PullTextureUpdates(sync_token);
}
}
@@ -1052,7 +1052,7 @@ void GpuCommandBufferStub::OnFenceSyncRelease(uint64_t release) {
context_group_->mailbox_manager();
if (mailbox_manager->UsesSync() && MakeCurrent()) {
gpu::SyncToken sync_token(gpu::CommandBufferNamespace::GPU_IO,
- command_buffer_id_, release);
+ 0, command_buffer_id_, release);
mailbox_manager->PushTextureUpdates(sync_token);
}

Powered by Google App Engine
This is Rietveld 408576698