diff --git a/src/Magnum/Vk/Device.cpp b/src/Magnum/Vk/Device.cpp index ec74756e1..0f719eea2 100644 --- a/src/Magnum/Vk/Device.cpp +++ b/src/Magnum/Vk/Device.cpp @@ -191,10 +191,12 @@ DeviceCreateInfo::DeviceCreateInfo(DeviceProperties& deviceProperties, const Ext addEnabledExtensions(); } - /* Enable the KHR_copy_commands2 extension. Not in any Vulkan version - yet. */ + /* Enable the KHR_copy_commands2 and EXT_extended_dynamic_state + extensions. Not in any Vulkan version yet. */ if(extensionProperties->isSupported()) addEnabledExtensions(); + if(extensionProperties->isSupported()) + addEnabledExtensions(); /* Enable the KHR_portability_subset extension, which *has to be* enabled when available. Not enabling any of its features though,