diff options
author | Mauro Rossi <[email protected]> | 2018-06-11 22:41:33 +0200 |
---|---|---|
committer | Mauro Rossi <[email protected]> | 2018-07-28 12:39:57 +0200 |
commit | 1eb65c51adc41d211cea18180e2102c1ea27f195 (patch) | |
tree | bcbc969d2958bf7435eb3e58dc535928c75b151e /src/amd | |
parent | c67b36c8a130734beaca560b94976f9cba244b80 (diff) |
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 <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Robert Foss <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_entrypoints_gen.py | 3 |
1 files changed, 0 insertions, 3 deletions
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'] |