From 1eeebccd0456037ba49c8162538b434227854dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sat, 30 Jan 2021 18:31:28 +0100 Subject: [PATCH] Fix Apple gpu detection --- Common/GPU/OpenGL/GLFeatures.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/GPU/OpenGL/GLFeatures.cpp b/Common/GPU/OpenGL/GLFeatures.cpp index 975991534521..5902ed649274 100644 --- a/Common/GPU/OpenGL/GLFeatures.cpp +++ b/Common/GPU/OpenGL/GLFeatures.cpp @@ -181,7 +181,7 @@ void CheckGLExtensions() { // Just for reference: Galaxy Y has renderer == "VideoCore IV HW" } else if (vendor == "Vivante Corporation") { gl_extensions.gpuVendor = GPU_VENDOR_VIVANTE; - } else if (vendor == "Apple Inc.") { + } else if (vendor == "Apple Inc." || vendor == "Apple") { gl_extensions.gpuVendor = GPU_VENDOR_APPLE; } else { WARN_LOG(G3D, "Unknown GL vendor: '%s'", vendor.c_str());