Make shaderImageGatherExtended a required VkDevice feature

`shaderImageGatherExtended` is required by the shader compiler, to avoid complications associated with making it optional and considering that it's supported by the vast majority of Vulkan mobile devices, it was made a mandatory feature.
This commit is contained in:
PixelyIon 2021-12-01 22:50:54 +05:30
parent ece2785582
commit 3e45006d14

View File

@ -132,6 +132,7 @@ namespace skyline::gpu {
throw exception("Vulkan device doesn't support required feature: " #feature)
FEAT_REQ(vk::PhysicalDeviceFeatures2, features.independentBlend);
FEAT_REQ(vk::PhysicalDeviceFeatures2, features.shaderImageGatherExtended);
#undef FEAT_REQ