Add AccelerationStructure to WGSL write_value_type (#5261)

This commit is contained in:
JMS55
2024-02-23 23:41:37 -08:00
committed by GitHub
parent 440574f927
commit 5b9ade8223

View File

@@ -593,6 +593,7 @@ impl<W: Write> Writer<W> {
}
write!(self.out, ">")?;
}
TypeInner::AccelerationStructure => write!(self.out, "acceleration_structure")?,
_ => {
return Err(Error::Unimplemented(format!("write_value_type {inner:?}")));
}