mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 08:10:10 +01:00
Warn AMD linux users about potential performance loss if not using RADV
This commit is contained in:
parent
6ab3011eef
commit
c348fec84b
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue