[][src]Struct vulkan_bindings::PhysicalDeviceDescriptorIndexingProperties

#[repr(C)]pub struct PhysicalDeviceDescriptorIndexingProperties {
    pub sType: StructureType,
    pub pNext: *mut c_void,
    pub maxUpdateAfterBindDescriptorsInAllPools: u32,
    pub shaderUniformBufferArrayNonUniformIndexingNative: Bool32,
    pub shaderSampledImageArrayNonUniformIndexingNative: Bool32,
    pub shaderStorageBufferArrayNonUniformIndexingNative: Bool32,
    pub shaderStorageImageArrayNonUniformIndexingNative: Bool32,
    pub shaderInputAttachmentArrayNonUniformIndexingNative: Bool32,
    pub robustBufferAccessUpdateAfterBind: Bool32,
    pub quadDivergentImplicitLod: Bool32,
    pub maxPerStageDescriptorUpdateAfterBindSamplers: u32,
    pub maxPerStageDescriptorUpdateAfterBindUniformBuffers: u32,
    pub maxPerStageDescriptorUpdateAfterBindStorageBuffers: u32,
    pub maxPerStageDescriptorUpdateAfterBindSampledImages: u32,
    pub maxPerStageDescriptorUpdateAfterBindStorageImages: u32,
    pub maxPerStageDescriptorUpdateAfterBindInputAttachments: u32,
    pub maxPerStageUpdateAfterBindResources: u32,
    pub maxDescriptorSetUpdateAfterBindSamplers: u32,
    pub maxDescriptorSetUpdateAfterBindUniformBuffers: u32,
    pub maxDescriptorSetUpdateAfterBindUniformBuffersDynamic: u32,
    pub maxDescriptorSetUpdateAfterBindStorageBuffers: u32,
    pub maxDescriptorSetUpdateAfterBindStorageBuffersDynamic: u32,
    pub maxDescriptorSetUpdateAfterBindSampledImages: u32,
    pub maxDescriptorSetUpdateAfterBindStorageImages: u32,
    pub maxDescriptorSetUpdateAfterBindInputAttachments: u32,
}

Fields

sType: StructureTypepNext: *mut c_voidmaxUpdateAfterBindDescriptorsInAllPools: u32shaderUniformBufferArrayNonUniformIndexingNative: Bool32shaderSampledImageArrayNonUniformIndexingNative: Bool32shaderStorageBufferArrayNonUniformIndexingNative: Bool32shaderStorageImageArrayNonUniformIndexingNative: Bool32shaderInputAttachmentArrayNonUniformIndexingNative: Bool32robustBufferAccessUpdateAfterBind: Bool32quadDivergentImplicitLod: Bool32maxPerStageDescriptorUpdateAfterBindSamplers: u32maxPerStageDescriptorUpdateAfterBindUniformBuffers: u32maxPerStageDescriptorUpdateAfterBindStorageBuffers: u32maxPerStageDescriptorUpdateAfterBindSampledImages: u32maxPerStageDescriptorUpdateAfterBindStorageImages: u32maxPerStageDescriptorUpdateAfterBindInputAttachments: u32maxPerStageUpdateAfterBindResources: u32maxDescriptorSetUpdateAfterBindSamplers: u32maxDescriptorSetUpdateAfterBindUniformBuffers: u32maxDescriptorSetUpdateAfterBindUniformBuffersDynamic: u32maxDescriptorSetUpdateAfterBindStorageBuffers: u32maxDescriptorSetUpdateAfterBindStorageBuffersDynamic: u32maxDescriptorSetUpdateAfterBindSampledImages: u32maxDescriptorSetUpdateAfterBindStorageImages: u32maxDescriptorSetUpdateAfterBindInputAttachments: u32

Trait Implementations

impl Clone for PhysicalDeviceDescriptorIndexingProperties[src]

impl Copy for PhysicalDeviceDescriptorIndexingProperties[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.