diff options
| author | Stenzek <stenzek@gmail.com> | 2017-05-25 23:59:23 +1000 |
|---|---|---|
| committer | Stenzek <stenzek@gmail.com> | 2017-08-03 17:40:15 +1000 |
| commit | 7f887111868f2463ea8cdc8c4b28f96b19bf4bcd (patch) | |
| tree | e4ba32503eea4309042818644ccc5c6f3984ea50 /Source/Core/VideoCommon/DriverDetails.cpp | |
| parent | 6a76ca7bb7ad6bacb877b20e3a35c296720a35d3 (diff) | |
Vulkan: Add a driver bug for NV when MSAA is enabled
This causes the card to lock up when vkCmdClearAttachments is called,
when multisampling is enabled. Seems to be restricted to Maxwell and
newer?
Diffstat (limited to 'Source/Core/VideoCommon/DriverDetails.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index fb12fc04b8..8db1a595b8 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -101,7 +101,9 @@ static BugInfo m_known_bugs[] = { {API_OPENGL, OS_LINUX, VENDOR_MESA, DRIVER_I965, Family::UNKNOWN, BUG_SHARED_CONTEXT_SHADER_COMPILATION, -1.0, -1.0, true}, {API_OPENGL, OS_LINUX, VENDOR_MESA, DRIVER_NOUVEAU, Family::UNKNOWN, - BUG_SHARED_CONTEXT_SHADER_COMPILATION, -1.0, -1.0, true}}; + BUG_SHARED_CONTEXT_SHADER_COMPILATION, -1.0, -1.0, true}, + {API_VULKAN, OS_ALL, VENDOR_NVIDIA, DRIVER_NVIDIA, Family::UNKNOWN, + BUG_BROKEN_MSAA_VKCMDCLEARATTACHMENTS, -1.0, -1.0, true}}; static std::map<Bug, BugInfo> m_bugs; |
