We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c38f005 commit 59ccc4fCopy full SHA for 59ccc4f
examples/runners/wgpu/builder/src/main.rs
@@ -26,10 +26,14 @@ fn build_shader(
26
}
27
28
fn main() -> Result<(), Box<dyn Error>> {
29
- build_shader("../../shaders/sky-shader", true, &[])?;
+ build_shader("../../../shaders/sky-shader", true, &[])?;
30
build_shader("../../shaders/simplest-shader", false, &[])?;
31
// We need the int8 capability for using `Option`
32
- build_shader("../../shaders/compute-shader", false, &[Capability::Int8])?;
33
- build_shader("../../shaders/mouse-shader", false, &[])?;
+ build_shader(
+ "../../../shaders/compute-shader",
34
+ false,
35
+ &[Capability::Int8],
36
+ )?;
37
+ build_shader("../../../shaders/mouse-shader", false, &[])?;
38
Ok(())
39
0 commit comments