From cb9d99ec41a19dc6a2d4cdae14c29f93eaf6d095 Mon Sep 17 00:00:00 2001 From: Kaur Kuut Date: Thu, 30 May 2024 17:41:26 +0300 Subject: [PATCH] Update `with_winit` hot reloading shader directory reference. --- examples/with_winit/src/hot_reload.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with_winit/src/hot_reload.rs b/examples/with_winit/src/hot_reload.rs index ba17897c0..17c3b8fca 100644 --- a/examples/with_winit/src/hot_reload.rs +++ b/examples/with_winit/src/hot_reload.rs @@ -20,7 +20,7 @@ pub(crate) fn hot_reload(mut f: impl FnMut() -> Option<()> + Send + 'static) -> debouncer.watcher().watch( &Path::new(env!("CARGO_MANIFEST_DIR")) - .join("../../shader") + .join("../../vello_shaders/shader") .canonicalize()?, // We currently don't support hot reloading the imports, so don't recurse into there RecursiveMode::NonRecursive,