From f21ab0b70a63b7083a4cce5a8ac515d0d8f9e39e Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 10 Jul 2025 19:36:14 +1000 Subject: [PATCH] GPUDevice: Fix ARM GPU detection --- src/util/gpu_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/gpu_device.cpp b/src/util/gpu_device.cpp index 0d941f572..69096fe55 100644 --- a/src/util/gpu_device.cpp +++ b/src/util/gpu_device.cpp @@ -1226,7 +1226,7 @@ GPUDriverType GPUDevice::GuessDriverType(u32 pci_vendor_id, std::string_view ven INFO_LOG("Intel GPU detected."); return MESA_CHECK ? GPUDriverType::IntelMesa : GPUDriverType::IntelProprietary; } - else if (pci_vendor_id == 0x5143 || VCHECK("ARM") || ACHECK("Adreno")) + else if (pci_vendor_id == 0x5143 || VCHECK("Qualcomm") || ACHECK("Adreno")) { INFO_LOG("Qualcomm GPU detected."); return MESA_CHECK ? GPUDriverType::QualcommMesa : GPUDriverType::QualcommProprietary;