turnip: advertise VK_KHR_external_memory
authorChia-I Wu <olvaffe@gmail.com>
Fri, 1 Feb 2019 18:27:28 +0000 (10:27 -0800)
committerChia-I Wu <olvaffe@gmail.com>
Mon, 11 Mar 2019 17:02:13 +0000 (10:02 -0700)
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

index 1ac7bb9..53e6969 100644 (file)
@@ -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: