Message ID | 20240901045202.473291-1-dev@lynne.ee |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel,1/2] hwcontext_vulkan: disable more false positive validation checks | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index 763fb9d120..b214791738 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -457,6 +457,8 @@ static VkBool32 VKAPI_CALL vk_dbg_callback(VkDebugUtilsMessageSeverityFlagBitsEX /* Ignore false positives */ switch (data->messageIdNumber) { + case 0x086974c1: /* BestPractices-vkCreateCommandPool-command-buffer-reset */ + case 0xfd92477a: /* BestPractices-vkAllocateMemory-small-allocation */ case 0x30f4ac70: /* VUID-VkImageCreateInfo-pNext-06811 */ return VK_FALSE; default: