Skip to content

Commit 097ffd4

Browse files
committed
Revert "Reapply "Skip compressed image_copy tests in Compatibility mode. (#3140)" (#3161)"
This reverts commit 0e06340. These tests test writeBuffer, copyBufferToTexture, and copyTextureToBuffer as it says at the top of the file. They should not have been disabled for textures that don't support copyTextureToBuffer. For those cases they use rendering compare results.
1 parent 6e75f19 commit 097ffd4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/webgpu/api/operation/command_buffer/image_copy.spec.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1413,7 +1413,6 @@ bytes in copy works for every format.
14131413
.beforeAllSubcases(t => {
14141414
const info = kTextureFormatInfo[t.params.format];
14151415
t.skipIfTextureFormatNotSupported(t.params.format);
1416-
t.skipIfCopyTextureToTextureNotSupportedForFormat(t.params.format);
14171416
t.selectDeviceOrSkipTestCase(info.feature);
14181417
})
14191418
.fn(t => {
@@ -1511,7 +1510,6 @@ works for every format with 2d and 2d-array textures.
15111510
.beforeAllSubcases(t => {
15121511
const info = kTextureFormatInfo[t.params.format];
15131512
t.skipIfTextureFormatNotSupported(t.params.format);
1514-
t.skipIfCopyTextureToTextureNotSupportedForFormat(t.params.format);
15151513
t.selectDeviceOrSkipTestCase(info.feature);
15161514
})
15171515
.fn(t => {
@@ -1592,7 +1590,6 @@ for all formats. We pass origin and copyExtent as [number, number, number].`
15921590
.beforeAllSubcases(t => {
15931591
const info = kTextureFormatInfo[t.params.format];
15941592
t.skipIfTextureFormatNotSupported(t.params.format);
1595-
t.skipIfCopyTextureToTextureNotSupportedForFormat(t.params.format);
15961593
t.selectDeviceOrSkipTestCase(info.feature);
15971594
})
15981595
.fn(t => {
@@ -1793,7 +1790,6 @@ TODO: Make a variant for depth-stencil formats.
17931790
.beforeAllSubcases(t => {
17941791
const info = kTextureFormatInfo[t.params.format];
17951792
t.skipIfTextureFormatNotSupported(t.params.format);
1796-
t.skipIfCopyTextureToTextureNotSupportedForFormat(t.params.format);
17971793
t.selectDeviceOrSkipTestCase(info.feature);
17981794
})
17991795
.fn(t => {

0 commit comments

Comments
 (0)