Address review comments

This commit is contained in:
Nicholaus Clark 2022-05-05 22:02:22 -05:00 committed by Charles Giessen
parent adee12a0d9
commit 2912c74ebf

View File

@ -610,7 +610,7 @@ detail::Result<Instance> InstanceBuilder::build() const {
bool supports_properties2_ext =
detail::check_extension_supported(system.available_extensions, VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME);
if (supports_properties2_ext && api_version == VK_API_VERSION_1_0) {
if (supports_properties2_ext && api_version < VKB_VK_API_VERSION_1_1) {
extensions.push_back(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME);
}