Commit 121aee7c authored by Chris Blume's avatar Chris Blume Committed by Commit Bot

Fix typos

A few small typos were recently introduced in some comments.
This change fixes those typos.

No compiled code changed.

Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel
Change-Id: I1e3d1e7224fcab1c18d98ed19fd1d50fa6f640cc
Reviewed-on: https://chromium-review.googlesource.com/1147073Reviewed-by: default avatarZhenyao Mo <zmo@chromium.org>
Commit-Queue: Chris Blume <cblume@chromium.org>
Cr-Commit-Position: refs/heads/master@{#577647}
parent a7c1e6c9
...@@ -328,9 +328,9 @@ bool BadVulkanDllVersion(GPUInfo* gpu_info) { ...@@ -328,9 +328,9 @@ bool BadVulkanDllVersion(GPUInfo* gpu_info) {
// 1.0.42.0 - # of crashes: 35749 // 1.0.42.0 - # of crashes: 35749
// 1.0.42.1 - # of crashes: 68214 // 1.0.42.1 - # of crashes: 68214
// 1.0.51.0 - # of crashes: 5152 // 1.0.51.0 - # of crashes: 5152
// The GPU could be from any vendors, but only some certain models would // The GPU could be from any vendor, but only some certain models would crash.
// crash. For those that don't crash, they usually return failures upon GPU // For those that don't crash, they usually return failures upon GPU vulkan
// vulkan support querying even though the GPU drivers can support it. // support querying even though the GPU drivers can support it.
if ((major == 0 && minor == 0 && build_1 == 0 && build_2 == 0) || if ((major == 0 && minor == 0 && build_1 == 0 && build_2 == 0) ||
(major == 1 && minor == 0 && build_1 == 26 && build_2 == 0) || (major == 1 && minor == 0 && build_1 == 26 && build_2 == 0) ||
(major == 1 && minor == 0 && build_1 == 33 && build_2 == 0) || (major == 1 && minor == 0 && build_1 == 33 && build_2 == 0) ||
...@@ -410,7 +410,7 @@ void GetGpuSupportedVulkanVersionAndExtensions( ...@@ -410,7 +410,7 @@ void GetGpuSupportedVulkanVersionAndExtensions(
gpu_info->vulkan_version = 0; gpu_info->vulkan_version = 0;
// Skip if the system has an older AMD Vulkan driver amdvlk64.dll or // Skip if the system has an older AMD Vulkan driver amdvlk64.dll or
// amdvlk32.dll which crashes when vkCreateInstance() id called. This bug has // amdvlk32.dll which crashes when vkCreateInstance() is called. This bug has
// been fixed in the latest AMD driver. // been fixed in the latest AMD driver.
if (BadAMDVulkanDriverVersion(gpu_info)) { if (BadAMDVulkanDriverVersion(gpu_info)) {
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment