소스 검색

Use title case instead of uppercase for Vulkan Intel GPU detection

This matches how the vendor name is displayed in most places.

The Apple GPU vendor was also added for the M1.
Hugo Locurcio 4 년 전
부모
커밋
1bf402c061
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      drivers/vulkan/vulkan_context.cpp

+ 2 - 1
drivers/vulkan/vulkan_context.cpp

@@ -737,10 +737,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;