Commit 96cc9164 authored by Jonathan Backer's avatar Jonathan Backer Committed by Commit Bot

Disable Vulkan on Imagination PowerVR GPU on Android

There are crash reports and performance issues that remain
uninvestigated. Disable for now until we can fix that.

Bug: 1122650
Change-Id: I09fb05de39b5e3b5e3c26a8e0dbb90cbcffea4ae
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2380374
Auto-Submit: Jonathan Backer <backer@chromium.org>
Reviewed-by: default avatarPeng Huang <penghuang@chromium.org>
Commit-Queue: Jonathan Backer <backer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#802352}
parent 200e098b
...@@ -165,9 +165,15 @@ bool CheckVulkanCompabilities(const VulkanInfo& vulkan_info, ...@@ -165,9 +165,15 @@ bool CheckVulkanCompabilities(const VulkanInfo& vulkan_info,
device_info.properties.driverVersion < VK_MAKE_VERSION(19, 0, 0)) { device_info.properties.driverVersion < VK_MAKE_VERSION(19, 0, 0)) {
return false; return false;
} }
// https://crbug.com/1122650: Poor performance and untriaged crashes with
// Imagination GPUs.
constexpr uint32_t kVendorImagination = 0x1010;
if (device_info.properties.vendorID == kVendorImagination)
return false;
#endif // defined(OS_ANDROID) #endif // defined(OS_ANDROID)
return true; return true;
} }
} // namespace gpu } // namespace gpu
\ No newline at end of file
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