mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-25 08:13:27 +00:00
Skip compute_pass_resource_ownership
on GL/AMD Radeon Pro WX 3200. (#5801)
Skip `wgpu_test::compute_pass_ownership::compute_pass_resource_ownership` on the GL backend on AMD Radeon Pro WX 3200, to avoid the kernel crash described in #5800.
This commit is contained in:
parent
c6d954e026
commit
93c6fbe8ba
@ -17,7 +17,15 @@ var<storage, read_write> buffer: array<vec4f>;
|
||||
|
||||
#[gpu_test]
|
||||
static COMPUTE_PASS_RESOURCE_OWNERSHIP: GpuTestConfiguration = GpuTestConfiguration::new()
|
||||
.parameters(TestParameters::default().test_features_limits())
|
||||
.parameters(
|
||||
TestParameters::default()
|
||||
.test_features_limits()
|
||||
// https://github.com/gfx-rs/wgpu/issues/5800
|
||||
.skip(wgpu_test::FailureCase::backend_adapter(
|
||||
wgpu::Backends::GL,
|
||||
"AMD Radeon Pro WX 3200",
|
||||
)),
|
||||
)
|
||||
.run_async(compute_pass_resource_ownership);
|
||||
|
||||
async fn compute_pass_resource_ownership(ctx: TestingContext) {
|
||||
|
Loading…
Reference in New Issue
Block a user