From 6d1c4049de8038ca16bb76aefd66b70d29f2841d Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Fri, 1 Feb 2019 10:27:28 -0800 Subject: [PATCH] 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. --- src/freedreno/vulkan/tu_extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/freedreno/vulkan/tu_extensions.py b/src/freedreno/vulkan/tu_extensions.py index 1ac7bb9..53e6969 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: -- 2.7.4