From: Jason Ekstrand Date: Wed, 15 Feb 2017 02:57:22 +0000 (-0800) Subject: anv: Implement VK_KHX_external_memory X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d25ac6a4b0bb655101b67e267fdac7a15775916;p=mesa.git anv: Implement VK_KHX_external_memory This is the trivial implementation that just exposes the extension string but exposes zero external handle types. Reviewed-by: Chad Versace --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index df6f7ad7636..da3752956e1 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -362,6 +362,10 @@ static const VkExtensionProperties device_extensions[] = { .extensionName = VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME, .specVersion = 1, }, + { + .extensionName = VK_KHX_EXTERNAL_MEMORY_EXTENSION_NAME, + .specVersion = 1, + }, }; static void * diff --git a/src/intel/vulkan/anv_entrypoints_gen.py b/src/intel/vulkan/anv_entrypoints_gen.py index 245d6d024e7..400b56766c7 100644 --- a/src/intel/vulkan/anv_entrypoints_gen.py +++ b/src/intel/vulkan/anv_entrypoints_gen.py @@ -45,6 +45,7 @@ SUPPORTED_EXTENSIONS = [ 'VK_KHR_wayland_surface', 'VK_KHR_xcb_surface', 'VK_KHR_xlib_surface', + 'VK_KHX_external_memory', 'VK_KHX_external_memory_capabilities', ]