We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Level::next()
1 parent 47c72fa commit b912232Copy full SHA for b912232
naga/src/back/mod.rs
@@ -70,7 +70,7 @@ pub type PipelineConstants = hashbrown::HashMap<String, f64>;
70
pub struct Level(pub usize);
71
72
impl Level {
73
- const fn next(&self) -> Self {
+ pub const fn next(&self) -> Self {
74
Level(self.0 + 1)
75
}
76
0 commit comments