Skip to content

Commit 7960c5e

Browse files
authored
Disable multithreaded gl compute on llvmpipe (#3251)
1 parent 98999da commit 7960c5e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

wgpu/examples/hello-compute/tests.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,9 @@ fn test_multithreaded_compute() {
7171
TestParameters::default()
7272
.downlevel_flags(wgpu::DownlevelFlags::COMPUTE_SHADERS)
7373
.limits(wgpu::Limits::downlevel_defaults())
74-
.specific_failure(None, None, Some("V3D"), true),
74+
.specific_failure(None, None, Some("V3D"), true)
75+
// https://github.com/gfx-rs/wgpu/issues/3250
76+
.specific_failure(Some(wgpu::Backends::GL), None, Some("llvmpipe"), true),
7577
|ctx| {
7678
use std::{sync::mpsc, thread, time::Duration};
7779

0 commit comments

Comments
 (0)