diff options
author | ericrk <ericrk@chromium.org> | 2016-03-23 11:03:06 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-23 18:04:35 +0000 |
commit | 9a7b8ea49fe9b5d8509a9a43275809ab759853a8 (patch) | |
tree | 10ba284b182b071f47d60a57f8d5999785507ed7 /gpu | |
parent | 0f8f7b79220955722dfdd12af82f37d645351af1 (diff) | |
download | chromium_src-9a7b8ea49fe9b5d8509a9a43275809ab759853a8.zip chromium_src-9a7b8ea49fe9b5d8509a9a43275809ab759853a8.tar.gz chromium_src-9a7b8ea49fe9b5d8509a9a43275809ab759853a8.tar.bz2 |
Add missing IPC struct member msaa_is_slow.
Missed this in previous CL: crrev.com/1781093002 - added this field to the capabilities, but not to the IPC struct traits.
Might explain some of the flakiness in GPU bots.
BUG=596730, 596475
CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel
Review URL: https://codereview.chromium.org/1826673002
Cr-Commit-Position: refs/heads/master@{#382879}
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/ipc/common/gpu_command_buffer_traits_multi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gpu/ipc/common/gpu_command_buffer_traits_multi.h b/gpu/ipc/common/gpu_command_buffer_traits_multi.h index 09a3fb3..1407373 100644 --- a/gpu/ipc/common/gpu_command_buffer_traits_multi.h +++ b/gpu/ipc/common/gpu_command_buffer_traits_multi.h @@ -110,6 +110,7 @@ IPC_STRUCT_TRAITS_BEGIN(gpu::Capabilities) IPC_STRUCT_TRAITS_MEMBER(timer_queries) IPC_STRUCT_TRAITS_MEMBER(surfaceless) IPC_STRUCT_TRAITS_MEMBER(flips_vertically) + IPC_STRUCT_TRAITS_MEMBER(msaa_is_slow) IPC_STRUCT_TRAITS_MEMBER(major_version) IPC_STRUCT_TRAITS_MEMBER(minor_version) |