From bd85c9a99a3fefedfa10d7c0cc2841a9f416af64 Mon Sep 17 00:00:00 2001 From: Jamie Nicol Date: Thu, 19 Jun 2025 09:33:21 +0100 Subject: [PATCH] [test] Rename existing `external_texture` tests to `external_image_copy` These existing tests cover `Queue::copy_external_image_to_texture()` which, despite the similar name, is unrelated to the external texture binding resource. The following patch is going to add some tests for the latter, so we are taking this opportunity to rename the former to help avoid confusion. --- .../wgpu-gpu/{external_texture.rs => external_image_copy.rs} | 0 tests/tests/wgpu-gpu/main.rs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/tests/wgpu-gpu/{external_texture.rs => external_image_copy.rs} (100%) diff --git a/tests/tests/wgpu-gpu/external_texture.rs b/tests/tests/wgpu-gpu/external_image_copy.rs similarity index 100% rename from tests/tests/wgpu-gpu/external_texture.rs rename to tests/tests/wgpu-gpu/external_image_copy.rs diff --git a/tests/tests/wgpu-gpu/main.rs b/tests/tests/wgpu-gpu/main.rs index a0785fe44..2698436ae 100644 --- a/tests/tests/wgpu-gpu/main.rs +++ b/tests/tests/wgpu-gpu/main.rs @@ -28,7 +28,7 @@ mod dispatch_workgroups_indirect; mod draw_indirect; mod dual_source_blending; mod encoder; -mod external_texture; +mod external_image_copy; mod float32_filterable; mod image_atomics; mod instance;