We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb46a7f commit 24752afCopy full SHA for 24752af
wgpu-hal/src/vulkan/instance.rs
@@ -69,6 +69,15 @@ unsafe extern "system" fn debug_utils_messenger_callback(
69
return vk::FALSE;
70
}
71
72
+ // Silence Vulkan Validation error "VUID-StandaloneSpirv-None-10684".
73
+ //
74
+ // This is a bug. To prevent massive noise in the tests, lets suppress it for now.
75
+ // https://github.com/gfx-rs/wgpu/issues/7696
76
+ const VUID_STANDALONESPIRV_NONE_10684: i32 = 0xb210f7c2_u32 as i32;
77
+ if cd.message_id_number == VUID_STANDALONESPIRV_NONE_10684 {
78
+ return vk::FALSE;
79
+ }
80
+
81
let level = match message_severity {
82
vk::DebugUtilsMessageSeverityFlagsEXT::VERBOSE => log::Level::Debug,
83
vk::DebugUtilsMessageSeverityFlagsEXT::INFO => log::Level::Info,
0 commit comments