v3dv: include Vulkan version 1.1 as unsupported.

This is so we can generate entry points for extensions that have been
promoted to core in 1.1.

Entry points for promoted extensions are aliased without the KHR suffix
in the Vulkan API XML, and the entry point generation scripts are designed
to point the dispatch tables to entry points generated from the non-aliased
function names, however, these are not included in the header file without
this change.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6766>
This commit is contained in:
Iago Toral Quiroga 2020-01-14 16:10:59 +01:00 committed by Marge Bot
parent 5935ef098d
commit ecd0b1f4b1
1 changed files with 1 additions and 4 deletions

View File

@ -53,10 +53,7 @@ API_PATCH_VERSION = 155
# available.
API_VERSIONS = [
ApiVersion('1.0', True),
# FIXME: for now we only support 1.0. We maintain this support from anv just in case in
# the future we support more that one version supported.
# ApiVersion('1.1', <condition> ),
ApiVersion('1.1', False),
]
MAX_API_VERSION = None # Computed later