zink: add VK_KHR_driver_properties

yet another extension that breaks naming conventions for structs/enums,
even if it does so in a very sensible way

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8284>
This commit is contained in:
Mike Blumenkrantz 2021-01-20 09:24:43 -05:00 committed by Marge Bot
parent e87b59f687
commit 356a381600
1 changed files with 6 additions and 1 deletions

View File

@ -64,6 +64,9 @@ EXTENSIONS = [
Extension("VK_KHR_external_memory"),
Extension("VK_KHR_external_memory_fd"),
Extension("VK_KHR_vulkan_memory_model"),
Extension("VK_KHR_driver_properties",
alias="driver",
properties=True),
Extension("VK_EXT_conditional_rendering",
alias="cond_render",
features=True,
@ -134,7 +137,9 @@ VERSIONS = [
# There exists some inconsistencies regarding the enum constants, fix them.
# This is basically generated_code.replace(key, value).
REPLACEMENTS = {
"ROBUSTNESS2": "ROBUSTNESS_2"
"ROBUSTNESS2": "ROBUSTNESS_2",
"PropertiesProperties": "Properties",
"PROPERTIES_PROPERTIES": "PROPERTIES",
}