From: Jason Ekstrand Date: Mon, 16 Apr 2018 14:38:31 +0000 (-0700) Subject: anv,radv: Drop XML workarounds for VK_ANDROID_native_buffer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=72ab499c9f9fbfa27645168b688ad03ad5d51242;p=mesa.git anv,radv: Drop XML workarounds for VK_ANDROID_native_buffer Reviewed-by: Samuel Pitoiset --- diff --git a/src/amd/vulkan/radv_extensions.py b/src/amd/vulkan/radv_extensions.py index db37d617f9e..099cae78b11 100644 --- a/src/amd/vulkan/radv_extensions.py +++ b/src/amd/vulkan/radv_extensions.py @@ -161,12 +161,7 @@ def _init_exts_from_xml(xml): continue ext = ext_name_map[ext_name] - if ext_name == 'VK_ANDROID_native_buffer': - # VK_ANDROID_native_buffer is missing the type specifier. Just - # hard-code it to be a device extension for now. - ext.type = 'device' - else: - ext.type = ext_elem.attrib['type'] + ext.type = ext_elem.attrib['type'] _TEMPLATE_H = Template(COPYRIGHT + """ #ifndef RADV_EXTENSIONS_H diff --git a/src/intel/vulkan/anv_extensions_gen.py b/src/intel/vulkan/anv_extensions_gen.py index 57a528563ed..5ea82204eea 100644 --- a/src/intel/vulkan/anv_extensions_gen.py +++ b/src/intel/vulkan/anv_extensions_gen.py @@ -46,12 +46,7 @@ def _init_exts_from_xml(xml): continue ext = ext_name_map[ext_name] - if ext_name == 'VK_ANDROID_native_buffer': - # VK_ANDROID_native_buffer is missing the type specifier. Just - # hard-code it to be a device extension for now. - ext.type = 'device' - else: - ext.type = ext_elem.attrib['type'] + ext.type = ext_elem.attrib['type'] _TEMPLATE_H = Template(COPYRIGHT + """