Merge pull request #51103 from Calinou/vulkan-detect-intel-title-case

Use title case instead of uppercase for Vulkan Intel GPU detection
This commit is contained in:
Rémi Verschelde 2021-07-31 21:19:30 +02:00 committed by GitHub
commit a12f832060
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -733,10 +733,11 @@ Error VulkanContext::_create_physical_device() {
} vendor_names[] = {
{ 0x1002, "AMD" },
{ 0x1010, "ImgTec" },
{ 0x106B, "Apple" },
{ 0x10DE, "NVIDIA" },
{ 0x13B5, "ARM" },
{ 0x5143, "Qualcomm" },
{ 0x8086, "INTEL" },
{ 0x8086, "Intel" },
{ 0, nullptr },
};
device_name = gpu_props.deviceName;