Add missing VK_EXT_custom_resolve feature check

This commit is contained in:
baldurk
2026-07-03 16:31:40 +01:00
parent 0a1a33df51
commit 130e801183
@@ -3667,6 +3667,13 @@ bool WrappedVulkan::Serialise_vkCreateDevice(SerialiserType &ser, VkPhysicalDevi
m_MultiviewPerViewViewports |= ext->multiviewPerViewViewports != VK_FALSE;
}
END_PHYS_EXT_CHECK();
BEGIN_PHYS_EXT_CHECK(VkPhysicalDeviceCustomResolveFeaturesEXT,
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_RESOLVE_FEATURES_EXT);
{
CHECK_PHYS_EXT_FEATURE(customResolve);
}
END_PHYS_EXT_CHECK();
}
if(availFeatures.depthClamp)