diff --git a/librashader-runtime-d3d11/src/filter_pass.rs b/librashader-runtime-d3d11/src/filter_pass.rs index ea46e79..afe50d1 100644 --- a/librashader-runtime-d3d11/src/filter_pass.rs +++ b/librashader-runtime-d3d11/src/filter_pass.rs @@ -205,7 +205,7 @@ impl FilterPass { for (index, output) in parent.history_textures.iter().enumerate() { let Some(output) = output else { - eprintln!("no history"); + // eprintln!("no history"); continue; }; if let Some(binding) = self @@ -236,8 +236,6 @@ impl FilterPass { // PassOutput for (index, output) in parent.output_textures[0..pass_index].iter().enumerate() { let Some(output) = output else { - eprintln!("no passoutput {index}"); - continue; }; if let Some(binding) = self @@ -267,7 +265,7 @@ impl FilterPass { // PassFeedback for (index, feedback) in parent.feedback_textures.iter().enumerate() { let Some(feedback) = feedback else { - eprintln!("no passfeedback {index}"); + // eprintln!("no passfeedback {index}"); continue; }; if let Some(binding) = self diff --git a/librashader-runtime-vk/src/filter_pass.rs b/librashader-runtime-vk/src/filter_pass.rs index ec15597..43192e3 100644 --- a/librashader-runtime-vk/src/filter_pass.rs +++ b/librashader-runtime-vk/src/filter_pass.rs @@ -303,7 +303,7 @@ impl FilterPass { for (index, output) in parent.history_textures.iter().enumerate() { let Some(output) = output else { - eprintln!("no history"); + // eprintln!("no history"); continue; }; if let Some(binding) = self @@ -363,7 +363,7 @@ impl FilterPass { // PassFeedback for (index, feedback) in parent.feedback_inputs.iter().enumerate() { let Some(feedback) = feedback else { - eprintln!("no passfeedback {index}"); + // eprintln!("no passfeedback {index}"); continue; }; if let Some(binding) = self