pass: remove (extremely rare) stderr debug logs
This commit is contained in:
parent
173ffc53e4
commit
474cf37e68
|
@ -205,7 +205,7 @@ impl FilterPass {
|
||||||
|
|
||||||
for (index, output) in parent.history_textures.iter().enumerate() {
|
for (index, output) in parent.history_textures.iter().enumerate() {
|
||||||
let Some(output) = output else {
|
let Some(output) = output else {
|
||||||
eprintln!("no history");
|
// eprintln!("no history");
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
if let Some(binding) = self
|
if let Some(binding) = self
|
||||||
|
@ -236,8 +236,6 @@ impl FilterPass {
|
||||||
// PassOutput
|
// PassOutput
|
||||||
for (index, output) in parent.output_textures[0..pass_index].iter().enumerate() {
|
for (index, output) in parent.output_textures[0..pass_index].iter().enumerate() {
|
||||||
let Some(output) = output else {
|
let Some(output) = output else {
|
||||||
eprintln!("no passoutput {index}");
|
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
if let Some(binding) = self
|
if let Some(binding) = self
|
||||||
|
@ -267,7 +265,7 @@ impl FilterPass {
|
||||||
// PassFeedback
|
// PassFeedback
|
||||||
for (index, feedback) in parent.feedback_textures.iter().enumerate() {
|
for (index, feedback) in parent.feedback_textures.iter().enumerate() {
|
||||||
let Some(feedback) = feedback else {
|
let Some(feedback) = feedback else {
|
||||||
eprintln!("no passfeedback {index}");
|
// eprintln!("no passfeedback {index}");
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
if let Some(binding) = self
|
if let Some(binding) = self
|
||||||
|
|
|
@ -303,7 +303,7 @@ impl FilterPass {
|
||||||
|
|
||||||
for (index, output) in parent.history_textures.iter().enumerate() {
|
for (index, output) in parent.history_textures.iter().enumerate() {
|
||||||
let Some(output) = output else {
|
let Some(output) = output else {
|
||||||
eprintln!("no history");
|
// eprintln!("no history");
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
if let Some(binding) = self
|
if let Some(binding) = self
|
||||||
|
@ -363,7 +363,7 @@ impl FilterPass {
|
||||||
// PassFeedback
|
// PassFeedback
|
||||||
for (index, feedback) in parent.feedback_inputs.iter().enumerate() {
|
for (index, feedback) in parent.feedback_inputs.iter().enumerate() {
|
||||||
let Some(feedback) = feedback else {
|
let Some(feedback) = feedback else {
|
||||||
eprintln!("no passfeedback {index}");
|
// eprintln!("no passfeedback {index}");
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
if let Some(binding) = self
|
if let Some(binding) = self
|
||||||
|
|
Loading…
Reference in a new issue