From: Mauro Rossi Date: Mon, 11 Jun 2018 20:41:33 +0000 (+0200) Subject: radv: generate entrypoints for VK_ANDROID_native_buffer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1eb65c51adc41d211cea18180e2102c1ea27f195;p=mesa.git radv: generate entrypoints for VK_ANDROID_native_buffer Patch changes radv entrypoints generator to not skip this extension even though it is set as disabled in the vk.xml Reference: 63525ba730 ("android: enable VK_ANDROID_native_buffer") Fixes: 69f447553c ("vulkan: Drop vk_android_native_buffer.xml") Signed-off-by: Mauro Rossi Reviewed-by: Bas Nieuwenhuizen Reviewed-by: Robert Foss Reviewed-by: Emil Velikov --- diff --git a/src/amd/vulkan/radv_entrypoints_gen.py b/src/amd/vulkan/radv_entrypoints_gen.py index ca022bcbb03..377b544c2aa 100644 --- a/src/amd/vulkan/radv_entrypoints_gen.py +++ b/src/amd/vulkan/radv_entrypoints_gen.py @@ -413,9 +413,6 @@ def get_entrypoints(doc, entrypoints_to_defines, start_index): if ext_name not in supported_exts: continue - if extension.attrib['supported'] != 'vulkan': - continue - ext = supported_exts[ext_name] ext.type = extension.attrib['type']