pass: remove (extremely rare) stderr debug logs

This commit is contained in:
chyyran 2023-01-15 00:30:15 -05:00
parent 173ffc53e4
commit 474cf37e68
2 changed files with 4 additions and 6 deletions

View file

@ -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

View file

@ -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