Skip to content

Commit

Permalink
fix fmt from macos fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vecvec committed Jan 27, 2024
1 parent d9e915a commit 5e0da85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion wgpu-hal/src/metal/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,12 @@ impl crate::CommandEncoder<super::Api> for super::CommandEncoder {
}
}

unsafe fn copy_acceleration_structure_to_acceleration_structure(&mut self, _src: &crate::metal::Api::AccelerationStructure, _dst: &crate::metal::Api::AccelerationStructure, copy: AccelerationStructureCopy) {
unsafe fn copy_acceleration_structure_to_acceleration_structure(
&mut self,
_src: &crate::metal::Api::AccelerationStructure,
_dst: &crate::metal::Api::AccelerationStructure,
copy: AccelerationStructureCopy,
) {
unimplemented!()
}

Expand Down
5 changes: 4 additions & 1 deletion wgpu-hal/src/metal/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1229,7 +1229,10 @@ impl crate::Device<super::Api> for super::Device {
unimplemented!()
}

unsafe fn get_acceleration_structure_compact_size(&self, acceleration_structure: &crate::metal::Api::AccelerationStructure) -> BufferAddress {
unsafe fn get_acceleration_structure_compact_size(
&self,
acceleration_structure: &crate::metal::Api::AccelerationStructure,
) -> BufferAddress {
unimplemented!()
}

Expand Down

0 comments on commit 5e0da85

Please sign in to comment.