mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
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:
parent
aa71c8bfed
commit
f1eb6d7d7b
2 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue