diff options
| author | Techjar <tecknojar@gmail.com> | 2020-04-13 04:19:24 -0400 |
|---|---|---|
| committer | Techjar <tecknojar@gmail.com> | 2020-09-07 17:28:05 -0400 |
| commit | 69358b21868e3260d0c9273effbf302b130f25fd (patch) | |
| tree | e18eba66d46ae50e9f086ab68572b8f19e2e866e /Source/Core/VideoCommon/DriverDetails.cpp | |
| parent | e7e51756068a450b6e920c7783c81d7df4d2d133 (diff) | |
VideoBackends: Disable GPU Texture Decoding under MoltenVK
It's broken and causes spectacular artifacts and crashes.
Diffstat (limited to 'Source/Core/VideoCommon/DriverDetails.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/DriverDetails.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/DriverDetails.cpp b/Source/Core/VideoCommon/DriverDetails.cpp index 1670f1a028..3c5d9191c0 100644 --- a/Source/Core/VideoCommon/DriverDetails.cpp +++ b/Source/Core/VideoCommon/DriverDetails.cpp @@ -117,7 +117,10 @@ constexpr BugInfo m_known_bugs[] = { {API_VULKAN, OS_ALL, VENDOR_ARM, DRIVER_ARM, Family::UNKNOWN, BUG_SLOW_CACHED_READBACK_MEMORY, -1.0, -1.0, true}, {API_VULKAN, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN, - BUG_SLOW_CACHED_READBACK_MEMORY, -1.0, -1.0, true}}; + BUG_SLOW_CACHED_READBACK_MEMORY, -1.0, -1.0, true}, + {API_VULKAN, OS_OSX, VENDOR_ALL, DRIVER_PORTABILITY, Family::UNKNOWN, + BUG_BROKEN_GPU_TEXTURE_DECODING, -1.0, -1.0, true}, +}; static std::map<Bug, BugInfo> m_bugs; |
