logo
pub struct DescriptorSetLayoutCreateInfo {
    pub bindings: BTreeMap<u32, DescriptorSetLayoutBinding>,
    pub push_descriptor: bool,
    pub _ne: NonExhaustive,
}
Expand description

Parameters to create a new DescriptorSetLayout.

Fields

bindings: BTreeMap<u32, DescriptorSetLayoutBinding>

The bindings of the desriptor set layout. These are specified according to binding number.

It is generally advisable to keep the binding numbers low. Higher binding numbers may use more memory inside Vulkan.

The default value is empty.

push_descriptor: bool

Whether the descriptor set layout should be created for push descriptors.

If true, the layout can only be used for push descriptors, and if false, it can only be used for regular descriptor sets.

If set to true, the khr_push_descriptor extension must be enabled on the device, and there are several restrictions:

The default value is false.

_ne: NonExhaustive

Implementations

Builds a list of DescriptorSetLayoutCreateInfo from an iterator of DescriptorRequirement originating from a shader.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.