From ecd0b1f4b1c3accf0588ba4548026ed3865225a8 Mon Sep 17 00:00:00 2001 From: Iago Toral Quiroga Date: Tue, 14 Jan 2020 16:10:59 +0100 Subject: [PATCH] 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: --- src/broadcom/vulkan/v3dv_extensions.py | 5 +---- 1 file changed, 1 insertion(+), 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', ), + ApiVersion('1.1', False), ] MAX_API_VERSION = None # Computed later