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

Unified Diff: content/common/gpu/client/command_buffer_proxy_impl.cc

Issue 1525273003: gpu: Fix a bug in the generation of the destruction sync token for GMBs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/client/command_buffer_proxy_impl.cc
diff --git a/content/common/gpu/client/command_buffer_proxy_impl.cc b/content/common/gpu/client/command_buffer_proxy_impl.cc
index 22afb00509ccaa1af37ef3a11422725870e053f6..b247bf3fa34b5bb325182cc503fed0b6120ed97e 100644
--- a/content/common/gpu/client/command_buffer_proxy_impl.cc
+++ b/content/common/gpu/client/command_buffer_proxy_impl.cc
@@ -449,8 +449,8 @@ int32_t CommandBufferProxyImpl::CreateImage(ClientBuffer buffer,
return -1;
if (image_fence_sync) {
- gpu::SyncToken sync_token(GetNamespaceID(), GetCommandBufferID(),
- GetExtraCommandBufferData(), image_fence_sync);
+ gpu::SyncToken sync_token(GetNamespaceID(), GetExtraCommandBufferData(),
+ GetCommandBufferID(), image_fence_sync);
// Force a synchronous IPC to validate sync token.
channel_->ValidateFlushIDReachedServer(stream_id_, true);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698