From 1eb1ba8c3d0f929c2f3471308b20e780376f2e3b Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Wed, 21 Aug 2013 05:41:32 -0500 Subject: [PATCH] Typo + Add Lima to the driverdetails. --- Source/Core/VideoCommon/Src/DriverDetails.h | 2 +- Source/Plugins/Plugin_VideoOGL/Src/Render.cpp | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/DriverDetails.h b/Source/Core/VideoCommon/Src/DriverDetails.h index 1a434f695a..cb8b104eea 100644 --- a/Source/Core/VideoCommon/Src/DriverDetails.h +++ b/Source/Core/VideoCommon/Src/DriverDetails.h @@ -26,7 +26,7 @@ namespace DriverDetails { DRIVER_NVIDIA = 0, // Official Nvidia, including mobile GPU DRIVER_NOUVEAU, // OSS nouveau - DRIVER_ATI, // Official Nvidia + DRIVER_ATI, // Official ATI DRIVER_RADEONHD, // OSS Radeon DRIVER_INTEL, // Official Intel DRIVER_ARM, // Official Mali driver diff --git a/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp b/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp index 6bf201c771..a60aa15a9b 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp @@ -284,7 +284,15 @@ void InitDriverInfo() else if (std::string::npos != svendor.find("Intel")) vendor = DriverDetails::VENDOR_INTEL; else if (svendor == "ARM") + { vendor = DriverDetails::VENDOR_ARM; + driver = DriverDetails::DRIVER_ARM; + } + else if (svendor == "http://limadriver.org/") + { + vendor = DriverDetails::VENDOR_ARM; + driver = DriverDetails::DRIVER_LIMA; + } else if (svendor == "Qualcomm") vendor = DriverDetails::VENDOR_QUALCOMM; else if (svendor == "Imagination Technologies")