#[repr(C)]pub struct PhysicalDeviceVulkan11Properties {Show 17 fields
pub sType: StructureType,
pub pNext: *mut c_void,
pub deviceUUID: [u8; 16],
pub driverUUID: [u8; 16],
pub deviceLUID: [u8; 8],
pub deviceNodeMask: u32,
pub deviceLUIDValid: Bool32,
pub subgroupSize: u32,
pub subgroupSupportedStages: ShaderStageFlags,
pub subgroupSupportedOperations: SubgroupFeatureFlags,
pub subgroupQuadOperationsInAllStages: Bool32,
pub pointClippingBehavior: PointClippingBehavior,
pub maxMultiviewViewCount: u32,
pub maxMultiviewInstanceIndex: u32,
pub protectedNoFault: Bool32,
pub maxPerSetDescriptors: u32,
pub maxMemoryAllocationSize: DeviceSize,
}Fields§
§sType: StructureType§pNext: *mut c_void§deviceUUID: [u8; 16]§driverUUID: [u8; 16]§deviceLUID: [u8; 8]§deviceNodeMask: u32§deviceLUIDValid: Bool32§subgroupSize: u32§subgroupSupportedStages: ShaderStageFlags§subgroupSupportedOperations: SubgroupFeatureFlags§subgroupQuadOperationsInAllStages: Bool32§pointClippingBehavior: PointClippingBehavior§maxMultiviewViewCount: u32§maxMultiviewInstanceIndex: u32§protectedNoFault: Bool32§maxPerSetDescriptors: u32§maxMemoryAllocationSize: DeviceSizeImplementations§
Source§impl PhysicalDeviceVulkan11Properties
impl PhysicalDeviceVulkan11Properties
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *mut c_void) -> Self
pub fn deviceUUID(self, deviceUUID: [u8; 16]) -> Self
pub fn driverUUID(self, driverUUID: [u8; 16]) -> Self
pub fn deviceLUID(self, deviceLUID: [u8; 8]) -> Self
pub fn deviceNodeMask(self, deviceNodeMask: u32) -> Self
pub fn deviceLUIDValid(self, deviceLUIDValid: Bool32) -> Self
pub fn subgroupSize(self, subgroupSize: u32) -> Self
pub fn subgroupSupportedStages( self, subgroupSupportedStages: ShaderStageFlags, ) -> Self
pub fn subgroupSupportedOperations( self, subgroupSupportedOperations: SubgroupFeatureFlags, ) -> Self
pub fn subgroupQuadOperationsInAllStages( self, subgroupQuadOperationsInAllStages: Bool32, ) -> Self
pub fn pointClippingBehavior( self, pointClippingBehavior: PointClippingBehavior, ) -> Self
pub fn maxMultiviewViewCount(self, maxMultiviewViewCount: u32) -> Self
pub fn maxMultiviewInstanceIndex(self, maxMultiviewInstanceIndex: u32) -> Self
pub fn protectedNoFault(self, protectedNoFault: Bool32) -> Self
pub fn maxPerSetDescriptors(self, maxPerSetDescriptors: u32) -> Self
pub fn maxMemoryAllocationSize( self, maxMemoryAllocationSize: DeviceSize, ) -> Self
Trait Implementations§
Source§impl Clone for PhysicalDeviceVulkan11Properties
impl Clone for PhysicalDeviceVulkan11Properties
Source§fn clone(&self) -> PhysicalDeviceVulkan11Properties
fn clone(&self) -> PhysicalDeviceVulkan11Properties
Returns a duplicate 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 moreSource§impl Default for PhysicalDeviceVulkan11Properties
impl Default for PhysicalDeviceVulkan11Properties
Source§fn default() -> PhysicalDeviceVulkan11Properties
fn default() -> PhysicalDeviceVulkan11Properties
Returns the “default value” for a type. Read more
impl Copy for PhysicalDeviceVulkan11Properties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceVulkan11Properties
impl RefUnwindSafe for PhysicalDeviceVulkan11Properties
impl !Send for PhysicalDeviceVulkan11Properties
impl !Sync for PhysicalDeviceVulkan11Properties
impl Unpin for PhysicalDeviceVulkan11Properties
impl UnwindSafe for PhysicalDeviceVulkan11Properties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more