mirror of
https://github.com/stenzek/duckstation.git
synced 2025-07-13 21:50:09 +00:00
VulkanDevice: Avoid defaulting to Vulkan for V3D driver
Image copies are broken. https://discord.com/channels/695640472202379425/695823554712698962/1392128815689629707
This commit is contained in:
parent
b9a9ea220e
commit
63adf475d4
@ -1973,6 +1973,13 @@ bool VulkanDevice::IsSuitableDefaultRenderer()
|
||||
return false;
|
||||
}
|
||||
|
||||
// V3D is buggy, image copies with larger textures are broken.
|
||||
if (StringUtil::StartsWithNoCase(name, "V3D"))
|
||||
{
|
||||
INFO_LOG("Not using Vulkan for V3D GPU.");
|
||||
return false;
|
||||
}
|
||||
|
||||
INFO_LOG("Allowing Vulkan as default renderer.");
|
||||
return true;
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user