mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12: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:
parent
e40b76b253
commit
d689a6e47b
1 changed files with 2 additions and 2 deletions
|
@ -535,11 +535,11 @@ private:
|
||||||
LOG_NOTICE(RSX, "Found vulkan-compatible GPU: '%s' running on driver %s", get_name(), get_driver_version());
|
LOG_NOTICE(RSX, "Found vulkan-compatible GPU: '%s' running on driver %s", get_name(), get_driver_version());
|
||||||
|
|
||||||
if (get_driver_vendor() == driver_vendor::RADV &&
|
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
|
// Serious driver bug causing black screens
|
||||||
// See https://bugs.freedesktop.org/show_bug.cgi?id=110970
|
// 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
|
#ifndef _WIN32
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue