From: Chia-I Wu Date: Fri, 1 Feb 2019 18:27:28 +0000 (-0800) Subject: turnip: advertise VK_KHR_external_memory X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d1c4049de8038ca16bb76aefd66b70d29f2841d;p=mesa.git turnip: advertise VK_KHR_external_memory AFAICT, it is supported. We don't need to handle any of the new structs because our BOs can always be exported. --- diff --git a/src/freedreno/vulkan/tu_extensions.py b/src/freedreno/vulkan/tu_extensions.py index 1ac7bb95c5e..53e69690280 100644 --- a/src/freedreno/vulkan/tu_extensions.py +++ b/src/freedreno/vulkan/tu_extensions.py @@ -72,6 +72,7 @@ EXTENSIONS = [ Extension('VK_EXT_display_control', 1, 'VK_USE_PLATFORM_DISPLAY_KHR'), Extension('VK_EXT_debug_report', 9, True), Extension('VK_KHR_external_memory_capabilities', 1, True), + Extension('VK_KHR_external_memory', 1, True), ] class VkVersion: