nak/dataflow: Fix typo in comments

Signed-off-by: Lorenzo Rossi <git@rossilorenzo.dev>
Reviewed-by: Mel Henning <mhenning@darkrefraction.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37108>
This commit is contained in:
Lorenzo Rossi 2025-10-30 13:41:22 +01:00 committed by Marge Bot
parent aa71c8bfed
commit f1eb6d7d7b
2 changed files with 3 additions and 3 deletions

View file

@ -125,7 +125,7 @@ where
/// Returns true if block_out has changed, false otherwise
pub transfer: Transfer,
/// Update the block output based on a predecessor's input
/// Update the block input based on a predecessor's output
pub join: Join,
}

View file

@ -550,8 +550,8 @@ fn insert_texture_barriers(f: &mut Function, sm: &dyn ShaderModel) {
true
}
},
join: |sim_out, pred_sim_in| {
sim_out.merge(pred_sim_in);
join: |sim_in, pred_sim_out| {
sim_in.merge(pred_sim_out);
},
}
.solve();