mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
zink: use maintenance5
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24685>
This commit is contained in:
parent
8be6b7caa3
commit
f501f9453a
2 changed files with 8 additions and 1 deletions
|
|
@ -152,7 +152,8 @@
|
||||||
"extensions": {
|
"extensions": {
|
||||||
"VK_KHR_maintenance2": 1,
|
"VK_KHR_maintenance2": 1,
|
||||||
"VK_KHR_maintenance3": 1,
|
"VK_KHR_maintenance3": 1,
|
||||||
"VK_KHR_maintenance4": 1
|
"VK_KHR_maintenance4": 1,
|
||||||
|
"VK_KHR_maintenance5": 1
|
||||||
},
|
},
|
||||||
"features": {
|
"features": {
|
||||||
"VkPhysicalDeviceFeatures": {
|
"VkPhysicalDeviceFeatures": {
|
||||||
|
|
@ -162,6 +163,9 @@
|
||||||
},
|
},
|
||||||
"VkPhysicalDeviceMaintenance4Features": {
|
"VkPhysicalDeviceMaintenance4Features": {
|
||||||
"maintenance4": true
|
"maintenance4": true
|
||||||
|
},
|
||||||
|
"VkPhysicalDeviceMaintenance5Features": {
|
||||||
|
"maintenance5": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"formats": {
|
"formats": {
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,9 @@ EXTENSIONS = [
|
||||||
Extension("VK_KHR_maintenance4",
|
Extension("VK_KHR_maintenance4",
|
||||||
alias="maint4",
|
alias="maint4",
|
||||||
features=True),
|
features=True),
|
||||||
|
Extension("VK_KHR_maintenance5",
|
||||||
|
alias="maint5",
|
||||||
|
features=True, properties=True),
|
||||||
Extension("VK_KHR_external_memory"),
|
Extension("VK_KHR_external_memory"),
|
||||||
Extension("VK_KHR_external_memory_fd"),
|
Extension("VK_KHR_external_memory_fd"),
|
||||||
Extension("VK_KHR_vulkan_memory_model"),
|
Extension("VK_KHR_vulkan_memory_model"),
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue