instance: Make enumerate_physical_device_groups unsafe

All Vulkan functions are marked `unsafe` and
`enumerate_physical_device_groups` should not be an exception to that.
This commit is contained in:
Marijn Suijten 2021-11-11 10:11:26 +01:00 committed by Benjamin Saunders
parent c4dd1d6040
commit 6640ecb200

View file

@ -59,16 +59,14 @@ impl Instance {
} }
#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkEnumeratePhysicalDeviceGroups.html>"] #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkEnumeratePhysicalDeviceGroups.html>"]
pub fn enumerate_physical_device_groups( pub unsafe fn enumerate_physical_device_groups(
&self, &self,
out: &mut [vk::PhysicalDeviceGroupProperties], out: &mut [vk::PhysicalDeviceGroupProperties],
) -> VkResult<()> { ) -> VkResult<()> {
unsafe { let mut group_count = out.len() as u32;
let mut group_count = out.len() as u32; self.instance_fn_1_1
self.instance_fn_1_1 .enumerate_physical_device_groups(self.handle(), &mut group_count, out.as_mut_ptr())
.enumerate_physical_device_groups(self.handle(), &mut group_count, out.as_mut_ptr()) .into()
.into()
}
} }
#[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceFeatures2.html>"] #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceFeatures2.html>"]