Warn AMD linux users about potential performance loss if not using RADV

This commit is contained in:
Malcolm Jestadt 2019-05-22 22:29:11 -04:00 committed by kd-11
parent 6ab3011eef
commit c348fec84b

View File

@ -437,6 +437,9 @@ namespace vk
const auto gpu_name = get_name();
if (gpu_name.find("Radeon") != std::string::npos)
{
#ifndef _WIN32
LOG_ERROR(RSX, "Using non RADV drivers on linux currently incurs a ~40% performance loss due to a window resizing workaround. Using RADV is recommended.");
#endif
return driver_vendor::AMD;
}