pub type PhysicalDeviceGroupPropertiesKHR<'a> = PhysicalDeviceGroupProperties<'a>;
Aliased Type§
struct PhysicalDeviceGroupPropertiesKHR<'a> {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub physical_device_count: u32,
pub physical_devices: [PhysicalDevice; 32],
pub subset_allocation: u32,
pub _marker: PhantomData<&'a ()>,
}
Fields§
§s_type: StructureType
§p_next: *mut c_void
§physical_device_count: u32
§physical_devices: [PhysicalDevice; 32]
§subset_allocation: u32
§_marker: PhantomData<&'a ()>
Implementations
Source§impl<'a> PhysicalDeviceGroupProperties<'a>
impl<'a> PhysicalDeviceGroupProperties<'a>
pub fn physical_devices(self, physical_devices: &[PhysicalDevice]) -> Self
pub fn physical_devices_as_slice(&self) -> &[PhysicalDevice]
pub fn subset_allocation(self, subset_allocation: bool) -> Self
Trait Implementations
Source§impl<'a> Clone for PhysicalDeviceGroupProperties<'a>
impl<'a> Clone for PhysicalDeviceGroupProperties<'a>
Source§fn clone(&self) -> PhysicalDeviceGroupProperties<'a>
fn clone(&self) -> PhysicalDeviceGroupProperties<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more