mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #8379 from stenzek/mali
Vulkan: Optimizations for Mali with EFB2RAM on
This commit is contained in:
@ -113,7 +113,11 @@ constexpr BugInfo m_known_bugs[] = {
|
||||
{API_VULKAN, OS_ALL, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN,
|
||||
BUG_BROKEN_REVERSED_DEPTH_RANGE, -1.0, -1.0, true},
|
||||
{API_VULKAN, OS_OSX, VENDOR_ALL, DRIVER_PORTABILITY, Family::UNKNOWN,
|
||||
BUG_BROKEN_REVERSED_DEPTH_RANGE, -1.0, -1.0, true}};
|
||||
BUG_BROKEN_REVERSED_DEPTH_RANGE, -1.0, -1.0, true},
|
||||
{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}};
|
||||
|
||||
static std::map<Bug, BugInfo> m_bugs;
|
||||
|
||||
|
@ -281,6 +281,11 @@ enum Bug
|
||||
// The Vulkan spec allows the minDepth/maxDepth fields in the viewport to be reversed,
|
||||
// however the implementation is broken on some drivers.
|
||||
BUG_BROKEN_REVERSED_DEPTH_RANGE,
|
||||
|
||||
// BUG: Cached memory is significantly slower for readbacks than coherent memory in the
|
||||
// Mali Vulkan driver, causing high CPU usage in the __pi___inval_cache_range kernel
|
||||
// function. This flag causes readback buffers to select the coherent type.
|
||||
BUG_SLOW_CACHED_READBACK_MEMORY,
|
||||
};
|
||||
|
||||
// Initializes our internal vendor, device family, and driver version
|
||||
|
Reference in New Issue
Block a user