mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-22 21:30:31 +01:00
zink: enable maintenance8
this avoids validation errors from 3d<->2d blits Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33102>
This commit is contained in:
parent
0d29ddb328
commit
3d7d303dc5
2 changed files with 8 additions and 1 deletions
|
|
@ -401,7 +401,8 @@
|
|||
"VK_EXT_attachment_feedback_loop_layout": 1,
|
||||
"VK_EXT_attachment_feedback_loop_dynamic_state": 1,
|
||||
"VK_KHR_maintenance6": 1,
|
||||
"VK_KHR_maintenance7": 1
|
||||
"VK_KHR_maintenance7": 1,
|
||||
"VK_KHR_maintenance8": 1
|
||||
},
|
||||
"features": {
|
||||
"VkPhysicalDeviceExtendedDynamicStateFeaturesEXT": {
|
||||
|
|
@ -443,6 +444,9 @@
|
|||
},
|
||||
"VkPhysicalDeviceMaintenance7FeaturesKHR": {
|
||||
"maintenance7": true
|
||||
},
|
||||
"VkPhysicalDeviceMaintenance8FeaturesKHR": {
|
||||
"maintenance8": true
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
|
|
|
|||
|
|
@ -75,6 +75,9 @@ EXTENSIONS = [
|
|||
Extension("VK_KHR_maintenance7",
|
||||
alias="maint7",
|
||||
features=True, properties=True),
|
||||
Extension("VK_KHR_maintenance8",
|
||||
alias="maint8",
|
||||
features=True),
|
||||
Extension("VK_KHR_external_memory"),
|
||||
Extension("VK_KHR_external_memory_fd"),
|
||||
Extension("VK_KHR_vulkan_memory_model"),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue