Skip to content

Commit

Permalink
Add missing match arm
Browse files Browse the repository at this point in the history
  • Loading branch information
evahop committed Mar 15, 2023
1 parent fc12868 commit c97c69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/back/hlsl/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2814,7 +2814,7 @@ impl<'a, W: fmt::Write> super::Writer<'a, W> {
Ctrl::Fine => "ddy_fine",
Ctrl::None => "ddy",
},
_ => "fwidth",
Axis::Width => "fwidth",
};
write!(self.out, "{fun_str}(")?;
self.write_expr(module, expr, func_ctx)?;
Expand Down

0 comments on commit c97c69e

Please sign in to comment.