diff options
author | Lynne <dev@lynne.ee> | 2024-12-18 14:33:50 +0900 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-12-23 04:25:08 +0900 |
commit | 4ca2b86ed54fbd0ffcfd74fd4e8bd3055bd12dcf (patch) | |
tree | 58b486fe40fb084f6356fde3a7a84e5d0f556bd9 /libavutil/hwcontext_vulkan.c | |
parent | 18af3a1db2db07cd24d611cc9cdc86fcdec4b505 (diff) | |
download | ffmpeg-4ca2b86ed54fbd0ffcfd74fd4e8bd3055bd12dcf.tar.gz |
hwcontext_vulkan: disable validation layer threading warnings
The layer is buggy currently:
https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/9045
Diffstat (limited to 'libavutil/hwcontext_vulkan.c')
-rw-r--r-- | libavutil/hwcontext_vulkan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index 5601ef4d9e..6eca097ea3 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -626,6 +626,7 @@ static VkBool32 VKAPI_CALL vk_dbg_callback(VkDebugUtilsMessageSeverityFlagBitsEX case 0xfd92477a: /* BestPractices-vkAllocateMemory-small-allocation */ case 0x618ab1e7: /* VUID-VkImageViewCreateInfo-usage-02275 */ case 0x30f4ac70: /* VUID-VkImageCreateInfo-pNext-06811 */ + case 0xa05b236e: /* UNASSIGNED-Threading-MultipleThreads-Write */ return VK_FALSE; default: break; |