Skip to content

Commit cdba91c

Browse files
committed
Expect pass: wgpu_gpu::clear_texture::clear_texture_uncompressed
On `wgpu_gpu::clear_texture::clear_texture_uncompressed`, remove the `expect_fail` for GL. This passes on current Mesa, and the `expect_fail` dates from 2023-11-23. If this test still fails on other GL implementations, let's find out what they are and refine the `expect_fail`.
1 parent c97d22f commit cdba91c

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

tests/tests/wgpu-gpu/clear_texture.rs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -348,17 +348,7 @@ static CLEAR_TEXTURE_UNCOMPRESSED_GLES: GpuTestConfiguration = GpuTestConfigurat
348348

349349
#[gpu_test]
350350
static CLEAR_TEXTURE_UNCOMPRESSED: GpuTestConfiguration = GpuTestConfiguration::new()
351-
.parameters(
352-
TestParameters::default()
353-
.expect_fail(
354-
FailureCase::backend(wgpu::Backends::GL)
355-
.panic("texture with format Rg8Snorm was not fully cleared")
356-
.panic("texture with format Rgb9e5Ufloat was not fully cleared")
357-
.validation_error("GL_INVALID_FRAMEBUFFER_OPERATION")
358-
.validation_error("GL_INVALID_OPERATION"),
359-
)
360-
.features(wgpu::Features::CLEAR_TEXTURE),
361-
)
351+
.parameters(TestParameters::default().features(wgpu::Features::CLEAR_TEXTURE))
362352
.run_async(|ctx| clear_texture_tests(ctx, TEXTURE_FORMATS_UNCOMPRESSED));
363353

364354
#[gpu_test]

0 commit comments

Comments
 (0)