hwcontext_vulkan: disable more false positive validation checks

Both of these are fundamentally incompatible with video decoding.

The third one can be tracked in the following validation layer issue:
https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues/6627
release/7.1
Lynne 5 months ago
parent 9c65325819
commit 3415e0533f
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
  1. 3
      libavutil/hwcontext_vulkan.c

@ -457,6 +457,9 @@ 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 0x618ab1e7: /* VUID-VkImageViewCreateInfo-usage-02275 */
case 0x30f4ac70: /* VUID-VkImageCreateInfo-pNext-06811 */
return VK_FALSE;
default:

Loading…
Cancel
Save