mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-04 23:55:08 +01:00
Make independentBlend
a required VkDevice
feature
Independent blending is supported by effectively every Vulkan 1.1 Android GPU, it gives us the ability to architecture Maxwell3D blending emulation better as we can avoid additional checks for independent blending state and having a fallback path for when the host doesn't support the feature.
This commit is contained in:
parent
cd737fbdd8
commit
2ceb6465e8
@ -131,6 +131,8 @@ namespace skyline::gpu {
|
||||
else \
|
||||
throw exception("Vulkan device doesn't support required feature: " #feature)
|
||||
|
||||
FEAT_REQ(independentBlend);
|
||||
|
||||
#undef FEAT_REQ
|
||||
|
||||
auto deviceExtensions{physicalDevice.enumerateDeviceExtensionProperties()};
|
||||
|
Loading…
Reference in New Issue
Block a user