Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Typo + Add Lima to the driverdetails.
  • Loading branch information
Sonicadvance1 committed Aug 21, 2013
1 parent 1910f58 commit 1eb1ba8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/Src/DriverDetails.h
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions Source/Plugins/Plugin_VideoOGL/Src/Render.cpp
Expand Up @@ -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")
Expand Down

0 comments on commit 1eb1ba8

Please sign in to comment.