Skip to content

Commit

Permalink
Add AccelerationStructure to WGSL write_value_type (#5261)
Browse files Browse the repository at this point in the history
  • Loading branch information
JMS55 authored Feb 24, 2024
1 parent 440574f commit 5b9ade8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions naga/src/back/wgsl/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:?}")));
}
Expand Down

0 comments on commit 5b9ade8

Please sign in to comment.