Skip to content

Commit

Permalink
Blacklist the AMD Vulkan driver 1.0.54 for info collection on Windows
Browse files Browse the repository at this point in the history
Majority of the Vulkan crashes on Windows have this driver version.
This version was accidentally excluded in the previous CL.

Bug: 850881
Change-Id: I0df2ea2e2ba4e5e7ce300e13ece2468f026ddab2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2253079
Reviewed-by: Zhenyao Mo <zmo@chromium.org>
Commit-Queue: Maggie Chen <magchen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#780058}
  • Loading branch information
Maggie Chen authored and Commit Bot committed Jun 18, 2020
1 parent b38e4db commit eb28a2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpu/config/gpu_info_collector_win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ bool BadAMDVulkanDriverVersion() {
// broken.
const base::Version kBadAMDVulkanDriverVersion("1.0.54.0");
// CompareTo() returns -1, 0, 1 for <, ==, >.
if (amd_version.CompareTo(kBadAMDVulkanDriverVersion) == -1)
if (amd_version.CompareTo(kBadAMDVulkanDriverVersion) != 1)
return true;

return false;
Expand Down

0 comments on commit eb28a2c

Please sign in to comment.