video_core: renderer_vulkan: proper inclusion of maintenance4

This commit is contained in:
psucien 2024-05-29 17:06:46 +02:00
parent 5f37a6be83
commit a67b8f7a0b
1 changed files with 1 additions and 3 deletions

View File

@ -206,6 +206,7 @@ bool Instance::CreateDevice() {
},
vk::PhysicalDeviceVulkan13Features{
.dynamicRendering = true,
.maintenance4 = true,
},
vk::PhysicalDeviceCustomBorderColorFeaturesEXT{
.customBorderColors = true,
@ -214,9 +215,6 @@ bool Instance::CreateDevice() {
vk::PhysicalDeviceIndexTypeUint8FeaturesEXT{
.indexTypeUint8 = true,
},
vk::PhysicalDeviceMaintenance4Features{
.maintenance4 = true,
},
};
if (!index_type_uint8) {