From b8dbd66ed1a584761d4b58a03b622a710cef0391 Mon Sep 17 00:00:00 2001 From: robtfm <50659922+robtfm@users.noreply.github.com> Date: Tue, 5 Sep 2023 01:42:57 +0100 Subject: [PATCH] re-add example comments --- examples/shader/post_processing.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/shader/post_processing.rs b/examples/shader/post_processing.rs index 92b8f25e97c50..02a620e15e729 100644 --- a/examples/shader/post_processing.rs +++ b/examples/shader/post_processing.rs @@ -190,8 +190,11 @@ impl ViewNode for PostProcessNode { &post_process_pipeline.layout, // It's important for this to match the BindGroupLayout defined in the PostProcessPipeline &BindGroupEntries::sequential(( + // Make sure to use the source view post_process.source, + // Use the sampler created for the pipeline &post_process_pipeline.sampler, + // Set the settings binding settings_binding.clone(), )), );