mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Hide some more format compatibility validation errors
This commit is contained in:
parent
67bd2b5e76
commit
3a63c7cb31
1 changed files with 4 additions and 1 deletions
|
@ -258,10 +258,13 @@ namespace dxvk {
|
||||||
case VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT: logLevel = LogLevel::Error; break;
|
case VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT: logLevel = LogLevel::Error; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const std::array<uint32_t, 5> ignoredIds = {
|
static const std::array<uint32_t, 8> ignoredIds = {
|
||||||
// Ignore image format features for depth-compare instructions.
|
// Ignore image format features for depth-compare instructions.
|
||||||
// These errors are expected in D3D9 and some D3D11 apps.
|
// These errors are expected in D3D9 and some D3D11 apps.
|
||||||
|
0x23259a0d,
|
||||||
0x4b9d1597,
|
0x4b9d1597,
|
||||||
|
0x534c50ad,
|
||||||
|
0x9750b479,
|
||||||
// Ignore vkCmdBindPipeline errors related to dynamic rendering.
|
// Ignore vkCmdBindPipeline errors related to dynamic rendering.
|
||||||
// Validation layers are buggy here and will complain about any
|
// Validation layers are buggy here and will complain about any
|
||||||
// command buffer with more than one render pass.
|
// command buffer with more than one render pass.
|
||||||
|
|
Loading…
Add table
Reference in a new issue