mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 00:11:24 +12:00
vk: Add LLVM8 warning for RADV drivers
This commit is contained in:
parent
009c55fcba
commit
9ce7b8a401
1 changed files with 8 additions and 0 deletions
|
@ -529,6 +529,14 @@ private:
|
||||||
get_physical_device_features(allow_extensions);
|
get_physical_device_features(allow_extensions);
|
||||||
|
|
||||||
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 &&
|
||||||
|
get_name().find("LLVM 8") != 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.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string get_name() const
|
std::string get_name() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue