gl: Check for vendor_string ATI for AMD cards. It seems AMD is still using the ATI openGL stack

This commit is contained in:
kd-11 2017-10-18 17:39:22 +03:00
parent d8ee6a2edb
commit 472cb3b1c2
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ namespace gl
EXT_dsa_supported = true; EXT_dsa_supported = true;
} }
#ifdef _WIN32 #ifdef _WIN32
else if (vendor_string.find("amd") != std::string::npos) else if (vendor_string.find("amd") != std::string::npos || vendor_string.find("ati") != std::string::npos)
{ {
vendor_AMD = true; vendor_AMD = true;
} }