From 3a63c7cb31bc43c825c816012277e7d714cb225c Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 16 Sep 2022 17:24:04 +0200 Subject: [PATCH] [dxvk] Hide some more format compatibility validation errors --- src/dxvk/dxvk_instance.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/dxvk/dxvk_instance.cpp b/src/dxvk/dxvk_instance.cpp index 4808fa45c..7f73e6e47 100644 --- a/src/dxvk/dxvk_instance.cpp +++ b/src/dxvk/dxvk_instance.cpp @@ -258,10 +258,13 @@ namespace dxvk { case VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT: logLevel = LogLevel::Error; break; } - static const std::array ignoredIds = { + static const std::array ignoredIds = { // Ignore image format features for depth-compare instructions. // These errors are expected in D3D9 and some D3D11 apps. + 0x23259a0d, 0x4b9d1597, + 0x534c50ad, + 0x9750b479, // Ignore vkCmdBindPipeline errors related to dynamic rendering. // Validation layers are buggy here and will complain about any // command buffer with more than one render pass.