diff options
author | dyen <dyen@chromium.org> | 2015-12-04 08:47:22 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-04 16:48:21 +0000 |
commit | f21e7e6e2b260d56fa54373dd662c81c9d955331 (patch) | |
tree | 801d65b1ac1d2259b017ad63e5c38e0439f74a3f /gpu/command_buffer/service/mailbox_manager_unittest.cc | |
parent | 8b2f573f0a506765a54b5d648ac2e8da7ad1266c (diff) | |
download | chromium_src-f21e7e6e2b260d56fa54373dd662c81c9d955331.zip chromium_src-f21e7e6e2b260d56fa54373dd662c81c9d955331.tar.gz chromium_src-f21e7e6e2b260d56fa54373dd662c81c9d955331.tar.bz2 |
Added an extra sync token field for extra command buffer identification.
This CL adds an extra field within sync tokens without changing the size
of the sync token. Currently this extra field is only used for the
GPU channel implementation, storing the stream of the identified command
buffer.
BUG=514815
Review URL: https://codereview.chromium.org/1489573003
Cr-Commit-Position: refs/heads/master@{#363231}
Diffstat (limited to 'gpu/command_buffer/service/mailbox_manager_unittest.cc')
-rw-r--r-- | gpu/command_buffer/service/mailbox_manager_unittest.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gpu/command_buffer/service/mailbox_manager_unittest.cc b/gpu/command_buffer/service/mailbox_manager_unittest.cc index 81979d0..e6ce523 100644 --- a/gpu/command_buffer/service/mailbox_manager_unittest.cc +++ b/gpu/command_buffer/service/mailbox_manager_unittest.cc @@ -19,6 +19,7 @@ namespace gles2 { using namespace ::testing; static const SyncToken g_sync_token(gpu::CommandBufferNamespace::GPU_IO, + 0, 123, 0); |