mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
VideoBackends: Disable GPU Texture Decoding under MoltenVK
It's broken and causes spectacular artifacts and crashes.
This commit is contained in:
parent
e7e5175606
commit
69358b2186
3 changed files with 12 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue