diff options
author | Lynne <dev@lynne.ee> | 2020-05-12 20:40:29 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2020-05-12 21:32:34 +0100 |
commit | 4b7e13931f38d2a23845f4768ba6b80f6721a173 (patch) | |
tree | b2762520de137dd3bcba6c678069880c4b104aec /libavutil/hwcontext_vulkan.c | |
parent | 251e4ad0ad1d814333f333a8e8168272b449354a (diff) | |
download | ffmpeg-4b7e13931f38d2a23845f4768ba6b80f6721a173.tar.gz |
hwcontext_vulkan: don't add the optional VK_KHR_surface extension by default
Both API and CLI users can enable any extension they'd like using the options.
Diffstat (limited to 'libavutil/hwcontext_vulkan.c')
-rw-r--r-- | libavutil/hwcontext_vulkan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index e3df428049..8f3f3fdd2a 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -194,7 +194,7 @@ typedef struct VulkanOptExtension { } VulkanOptExtension; static const VulkanOptExtension optional_instance_exts[] = { - { VK_KHR_SURFACE_EXTENSION_NAME, EXT_NO_FLAG }, + /* For future use */ }; static const VulkanOptExtension optional_device_exts[] = { |