1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 12:42:41 +01:00

vk: Don't warn RADV users on LLVM 8.0.1

- The 'back screen' issue on RADV was resolved with LLVM 8.0.1
This commit is contained in:
Malcolm Jestadt 2019-07-30 00:10:45 -04:00 committed by kd-11
parent e40b76b253
commit d689a6e47b

View File

@ -535,11 +535,11 @@ private:
LOG_NOTICE(RSX, "Found vulkan-compatible GPU: '%s' running on driver %s", get_name(), get_driver_version());
if (get_driver_vendor() == driver_vendor::RADV &&
get_name().find("LLVM 8") != std::string::npos)
get_name().find("LLVM 8.0.0") != std::string::npos)
{
// Serious driver bug causing black screens
// See https://bugs.freedesktop.org/show_bug.cgi?id=110970
LOG_FATAL(RSX, "RADV drivers have a major driver bug with LLVM 8 resulting in no visual output. Upgrade to LLVM 9 version of mesa to avoid this issue.");
LOG_FATAL(RSX, "RADV drivers have a major driver bug with LLVM 8.0.0 resulting in no visual output. Upgrade to LLVM version 8.0.1 or greater to avoid this issue.");
}
#ifndef _WIN32