diff --git a/wgpu/examples/hello_compute/main.rs b/wgpu/examples/hello-compute/main.rs similarity index 100% rename from wgpu/examples/hello_compute/main.rs rename to wgpu/examples/hello-compute/main.rs diff --git a/wgpu/examples/hello_compute/shader.comp b/wgpu/examples/hello-compute/shader.comp similarity index 100% rename from wgpu/examples/hello_compute/shader.comp rename to wgpu/examples/hello-compute/shader.comp diff --git a/wgpu/examples/hello_compute/shader.comp.spv b/wgpu/examples/hello-compute/shader.comp.spv similarity index 100% rename from wgpu/examples/hello_compute/shader.comp.spv rename to wgpu/examples/hello-compute/shader.comp.spv diff --git a/wgpu/examples/hello_triangle/main.rs b/wgpu/examples/hello-triangle/main.rs similarity index 100% rename from wgpu/examples/hello_triangle/main.rs rename to wgpu/examples/hello-triangle/main.rs diff --git a/wgpu/examples/hello_triangle/shader.frag b/wgpu/examples/hello-triangle/shader.frag similarity index 100% rename from wgpu/examples/hello_triangle/shader.frag rename to wgpu/examples/hello-triangle/shader.frag diff --git a/wgpu/examples/hello_triangle/shader.frag.spv b/wgpu/examples/hello-triangle/shader.frag.spv similarity index 100% rename from wgpu/examples/hello_triangle/shader.frag.spv rename to wgpu/examples/hello-triangle/shader.frag.spv diff --git a/wgpu/examples/hello_triangle/shader.vert b/wgpu/examples/hello-triangle/shader.vert similarity index 100% rename from wgpu/examples/hello_triangle/shader.vert rename to wgpu/examples/hello-triangle/shader.vert diff --git a/wgpu/examples/hello_triangle/shader.vert.spv b/wgpu/examples/hello-triangle/shader.vert.spv similarity index 100% rename from wgpu/examples/hello_triangle/shader.vert.spv rename to wgpu/examples/hello-triangle/shader.vert.spv diff --git a/wgpu/tests/multithreaded_compute.rs b/wgpu/tests/multithreaded_compute.rs index 3b943346e8..045f16c382 100644 --- a/wgpu/tests/multithreaded_compute.rs +++ b/wgpu/tests/multithreaded_compute.rs @@ -25,7 +25,7 @@ fn multithreaded_compute() { }, }); - let cs_bytes = include_bytes!("../examples/hello_compute/shader.comp.spv"); + let cs_bytes = include_bytes!("../examples/hello-compute/shader.comp.spv"); let cs_module = device.create_shader_module(cs_bytes); let staging_buffer = device