video_core: renderer_vulkan: proper inclusion of maintenance4
This commit is contained in:
parent
5f37a6be83
commit
a67b8f7a0b
|
@ -206,6 +206,7 @@ bool Instance::CreateDevice() {
|
||||||
},
|
},
|
||||||
vk::PhysicalDeviceVulkan13Features{
|
vk::PhysicalDeviceVulkan13Features{
|
||||||
.dynamicRendering = true,
|
.dynamicRendering = true,
|
||||||
|
.maintenance4 = true,
|
||||||
},
|
},
|
||||||
vk::PhysicalDeviceCustomBorderColorFeaturesEXT{
|
vk::PhysicalDeviceCustomBorderColorFeaturesEXT{
|
||||||
.customBorderColors = true,
|
.customBorderColors = true,
|
||||||
|
@ -214,9 +215,6 @@ bool Instance::CreateDevice() {
|
||||||
vk::PhysicalDeviceIndexTypeUint8FeaturesEXT{
|
vk::PhysicalDeviceIndexTypeUint8FeaturesEXT{
|
||||||
.indexTypeUint8 = true,
|
.indexTypeUint8 = true,
|
||||||
},
|
},
|
||||||
vk::PhysicalDeviceMaintenance4Features{
|
|
||||||
.maintenance4 = true,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!index_type_uint8) {
|
if (!index_type_uint8) {
|
||||||
|
|
Loading…
Reference in New Issue