[][src]Struct vulkan_raw::VkPhysicalDeviceVulkan11Properties

#[repr(C)]
pub struct VkPhysicalDeviceVulkan11Properties {
    pub sType: VkStructureType,
    pub pNext: *mut c_void,
    pub deviceUUID: [u8; 16],
    pub driverUUID: [u8; 16],
    pub deviceLUID: [u8; 8],
    pub deviceNodeMask: u32,
    pub deviceLUIDValid: VkBool32,
    pub subgroupSize: u32,
    pub subgroupSupportedStages: VkShaderStageFlags,
    pub subgroupSupportedOperations: VkSubgroupFeatureFlags,
    pub subgroupQuadOperationsInAllStages: VkBool32,
    pub pointClippingBehavior: VkPointClippingBehavior,
    pub maxMultiviewViewCount: u32,
    pub maxMultiviewInstanceIndex: u32,
    pub protectedNoFault: VkBool32,
    pub maxPerSetDescriptors: u32,
    pub maxMemoryAllocationSize: VkDeviceSize,
}

Fields

sType: VkStructureTypepNext: *mut c_voiddeviceUUID: [u8; 16]driverUUID: [u8; 16]deviceLUID: [u8; 8]deviceNodeMask: u32deviceLUIDValid: VkBool32subgroupSize: u32subgroupSupportedStages: VkShaderStageFlagssubgroupSupportedOperations: VkSubgroupFeatureFlagssubgroupQuadOperationsInAllStages: VkBool32pointClippingBehavior: VkPointClippingBehaviormaxMultiviewViewCount: u32maxMultiviewInstanceIndex: u32protectedNoFault: VkBool32maxPerSetDescriptors: u32maxMemoryAllocationSize: VkDeviceSize

Trait Implementations

impl Clone for VkPhysicalDeviceVulkan11Properties[src]

impl Debug for VkPhysicalDeviceVulkan11Properties[src]

impl Default for VkPhysicalDeviceVulkan11Properties[src]

impl Eq for VkPhysicalDeviceVulkan11Properties[src]

impl Hash for VkPhysicalDeviceVulkan11Properties[src]

impl Ord for VkPhysicalDeviceVulkan11Properties[src]

impl PartialEq<VkPhysicalDeviceVulkan11Properties> for VkPhysicalDeviceVulkan11Properties[src]

impl PartialOrd<VkPhysicalDeviceVulkan11Properties> for VkPhysicalDeviceVulkan11Properties[src]

impl StructuralEq for VkPhysicalDeviceVulkan11Properties[src]

impl StructuralPartialEq for VkPhysicalDeviceVulkan11Properties[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.