nvk: Move the mutableDescriptorType enable

The EXT extension overrides the VALVE one so put it in the EXT section.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28291>
This commit is contained in:
Faith Ekstrand 2024-03-21 13:59:32 -05:00 committed by Marge Bot
parent 1bed037b88
commit 359bb89302

View file

@ -526,6 +526,9 @@ nvk_get_device_features(const struct nv_device_info *info,
/* VK_EXT_multi_draw */
.multiDraw = true,
/* VK_EXT_mutable_descriptor_type */
.mutableDescriptorType = true,
/* VK_EXT_non_seamless_cube_map */
.nonSeamlessCubeMap = true,
@ -577,9 +580,6 @@ nvk_get_device_features(const struct nv_device_info *info,
/* VK_NV_shader_sm_builtins */
.shaderSMBuiltins = true,
/* VK_VALVE_mutable_descriptor_type */
.mutableDescriptorType = true,
};
}