summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIago Toral Quiroga <itoral@igalia.com>2020-01-14 16:10:59 +0100
committerMarge Bot <eric+marge@anholt.net>2020-10-13 21:21:26 +0000
commitecd0b1f4b1c3accf0588ba4548026ed3865225a8 (patch)
tree5b85f477d1be18fe7c93bf3e4658257b98bf0abb
parent5935ef098d9c904d535688b2c045198f5afcc3d0 (diff)
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>
-rw-r--r--src/broadcom/vulkan/v3dv_extensions.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/broadcom/vulkan/v3dv_extensions.py b/src/broadcom/vulkan/v3dv_extensions.py
index a1c84762f64..62f6d3c69a6 100644
--- a/src/broadcom/vulkan/v3dv_extensions.py
+++ b/src/broadcom/vulkan/v3dv_extensions.py
@@ -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