Currently in the [require] section you can list the name of an extension or the name of a feature in the VkPhysicalDeviceFeatures struct. However, some extensions such as VK_KHR_shader_float16_int8 add optional features with their own features struct. Although we can request the extension in the [require] section, there’s currently no way to enable the actual feature.
Currently in the
[require]
section you can list the name of an extension or the name of a feature in theVkPhysicalDeviceFeatures
struct. However, some extensions such asVK_KHR_shader_float16_int8
add optional features with their own features struct. Although we can request the extension in the[require]
section, there’s currently no way to enable the actual feature.