File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
crates/viewer/re_renderer/src Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,11 @@ pub fn testing_instance_descriptor() -> wgpu::InstanceDescriptor {
386386 let backends = wgpu:: Backends :: VULKAN | wgpu:: Backends :: METAL ;
387387
388388 let flags = (
389- wgpu:: InstanceFlags :: ALLOW_UNDERLYING_NONCOMPLIANT_ADAPTER | wgpu:: InstanceFlags :: VALIDATION
389+ wgpu:: InstanceFlags :: ALLOW_UNDERLYING_NONCOMPLIANT_ADAPTER
390+ // Validation would be great, but it looks like we don't always get validation layers, causing this error:
391+ // `InstanceFlags::VALIDATION requested, but unable to find layer: VK_LAYER_KHRONOS_validation`
392+ //| wgpu::InstanceFlags::VALIDATION
393+
390394 // TODO(andreas): GPU based validation layer sounds like a great idea,
391395 // but as of writing this makes tests crash on my Windows machine!
392396 // It looks like the crash is in the Vulkan/Nvidia driver, but further investigation is needed.
You can’t perform that action at this time.
0 commit comments