mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
VideoBackends:Vulkan: Workaround slow vkCmdCopyImageToBuffer on QCom driver
This commit is contained in:
@ -152,6 +152,8 @@ constexpr BugInfo m_known_bugs[] = {
|
||||
BUG_BROKEN_DYNAMIC_SAMPLER_INDEXING, -1.0, -1.0, true},
|
||||
{API_METAL, OS_OSX, VENDOR_INTEL, DRIVER_APPLE, Family::UNKNOWN,
|
||||
BUG_BROKEN_DYNAMIC_SAMPLER_INDEXING, -1.0, -1.0, true},
|
||||
{API_VULKAN, OS_ANDROID, VENDOR_QUALCOMM, DRIVER_QUALCOMM, Family::UNKNOWN,
|
||||
BUG_SLOW_OPTIMAL_IMAGE_TO_BUFFER_COPY, -1.0, -1.0, true},
|
||||
};
|
||||
|
||||
static std::map<Bug, BugInfo> m_bugs;
|
||||
|
@ -329,6 +329,13 @@ enum Bug
|
||||
// Started version: -1
|
||||
// Ended version: -1
|
||||
BUG_BROKEN_DYNAMIC_SAMPLER_INDEXING,
|
||||
|
||||
// BUG: vkCmdCopyImageToBuffer allocates a staging image when used to copy from
|
||||
// an image with optimal tiling.
|
||||
// Affected devices: Adreno
|
||||
// Started Version: -1
|
||||
// Ended Version: -1
|
||||
BUG_SLOW_OPTIMAL_IMAGE_TO_BUFFER_COPY
|
||||
};
|
||||
|
||||
// Initializes our internal vendor, device family, and driver version
|
||||
|
Reference in New Issue
Block a user