We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f9137 commit 19051b7Copy full SHA for 19051b7
crates/spirv-std/macros/src/lib.rs
@@ -698,7 +698,7 @@ impl SampleImplRewriter {
698
fn add_regs(&self, t: &mut Vec<TokenTree>) {
699
for i in 0..SAMPLE_PARAM_COUNT {
700
if self.0 & (1 << i) != 0 {
701
- let s = format!("{0} = in(reg) ¶m.{0},", SAMPLE_PARAM_NAMES[i]);
+ let s = format!("{0} = in(reg) ¶ms.{0},", SAMPLE_PARAM_NAMES[i]);
702
let ts: proc_macro2::TokenStream = s.parse().unwrap();
703
t.extend(ts);
704
}
0 commit comments