mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 13:00:09 +01:00
anv: sort vendors extensions after KHR and EXT
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
427aa9d154
commit
bc76ce1033
1 changed files with 2 additions and 2 deletions
|
|
@ -69,8 +69,6 @@ MAX_API_VERSION = None # Computed later
|
|||
# the those extension strings, then tests dEQP-VK.api.info.instance.extensions
|
||||
# and dEQP-VK.api.info.device fail due to the duplicated strings.
|
||||
EXTENSIONS = [
|
||||
Extension('VK_ANDROID_external_memory_android_hardware_buffer', 3, 'ANDROID'),
|
||||
Extension('VK_ANDROID_native_buffer', 5, 'ANDROID'),
|
||||
Extension('VK_KHR_8bit_storage', 1, 'device->info.gen >= 8'),
|
||||
Extension('VK_KHR_16bit_storage', 1, 'device->info.gen >= 8'),
|
||||
Extension('VK_KHR_bind_memory2', 1, True),
|
||||
|
|
@ -137,6 +135,8 @@ EXTENSIONS = [
|
|||
Extension('VK_EXT_shader_viewport_index_layer', 1, True),
|
||||
Extension('VK_EXT_transform_feedback', 1, True),
|
||||
Extension('VK_EXT_vertex_attribute_divisor', 3, True),
|
||||
Extension('VK_ANDROID_external_memory_android_hardware_buffer', 3, 'ANDROID'),
|
||||
Extension('VK_ANDROID_native_buffer', 5, 'ANDROID'),
|
||||
Extension('VK_GOOGLE_decorate_string', 1, True),
|
||||
Extension('VK_GOOGLE_hlsl_functionality1', 1, True),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue