307 B
307 B
Informations
let fns = vulkano_context.instance().fns();
let mut props = ash::vk::PhysicalDeviceProperties::default();
unsafe {
(fns.v1_0.get_physical_device_properties)(
vulkano_context.device().physical_device().handle(),
&mut props,
);
}
println!("{:?}", props);