Skip to content

Commit 99f0658

Browse files
committed
[naga wgsl-out] Rearrange Writer and WriterTypeContext.
In `naga::back::wgsl`, move `WriterTypeContext` out of the way, and coalesce `Writer`'s methods back into a single `impl` block. This is just code motion; there should be no change in behavior.
1 parent 187cfa9 commit 99f0658

File tree

1 file changed

+19
-21
lines changed

1 file changed

+19
-21
lines changed

naga/src/back/wgsl/writer.rs

+19-21
Original file line numberDiff line numberDiff line change
@@ -399,28 +399,7 @@ impl<W: Write> Writer<W> {
399399

400400
Ok(())
401401
}
402-
}
403-
404-
struct WriterTypeContext<'m> {
405-
module: &'m Module,
406-
names: &'m crate::FastHashMap<NameKey, String>,
407-
}
408-
409-
impl<W: Write> TypeContext<W> for WriterTypeContext<'_> {
410-
fn lookup_type(&self, handle: Handle<crate::Type>) -> &crate::Type {
411-
&self.module.types[handle]
412-
}
413-
414-
fn type_name(&self, handle: Handle<crate::Type>) -> &str {
415-
self.names[&NameKey::Type(handle)].as_str()
416-
}
417-
418-
fn write_override(&self, _: Handle<crate::Override>, _: &mut W) -> core::fmt::Result {
419-
unreachable!("overrides should be validated out");
420-
}
421-
}
422402

423-
impl<W: Write> Writer<W> {
424403
fn write_type(&mut self, module: &Module, ty: Handle<crate::Type>) -> BackendResult {
425404
// This actually can't be factored out into a nice constructor method,
426405
// because the borrow checker needs to be able to see that the borrows
@@ -1713,6 +1692,25 @@ impl<W: Write> Writer<W> {
17131692
}
17141693
}
17151694

1695+
struct WriterTypeContext<'m> {
1696+
module: &'m Module,
1697+
names: &'m crate::FastHashMap<NameKey, String>,
1698+
}
1699+
1700+
impl<W: Write> TypeContext<W> for WriterTypeContext<'_> {
1701+
fn lookup_type(&self, handle: Handle<crate::Type>) -> &crate::Type {
1702+
&self.module.types[handle]
1703+
}
1704+
1705+
fn type_name(&self, handle: Handle<crate::Type>) -> &str {
1706+
self.names[&NameKey::Type(handle)].as_str()
1707+
}
1708+
1709+
fn write_override(&self, _: Handle<crate::Override>, _: &mut W) -> core::fmt::Result {
1710+
unreachable!("overrides should be validated out");
1711+
}
1712+
}
1713+
17161714
fn map_binding_to_attribute(binding: &crate::Binding) -> Vec<Attribute> {
17171715
match *binding {
17181716
crate::Binding::BuiltIn(built_in) => {

0 commit comments

Comments
 (0)