Skip to content

Commit

Permalink
Fix metal backend
Browse files Browse the repository at this point in the history
  • Loading branch information
JMS55 committed Aug 26, 2023
1 parent bcb646e commit 1bcbfaa
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions wgpu-hal/src/metal/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1054,10 +1054,14 @@ impl crate::CommandEncoder<super::Api> for super::CommandEncoder {
encoder.dispatch_thread_groups_indirect(&buffer.raw, offset, self.state.raw_wg_size);
}

unsafe fn build_acceleration_structure(
unsafe fn build_acceleration_structures<'a, T>(
&mut self,
_desc: &crate::BuildAccelerationStructureDescriptor<super::Api>,
) {
_descriptor_count: u32,
_descriptors: T,
) where
super::Api: 'a,
T: IntoIterator<Item = crate::BuildAccelerationStructureDescriptor<'a, super::Api>>,
{
unimplemented!()
}

Expand Down

0 comments on commit 1bcbfaa

Please sign in to comment.