Struct vulkano::descriptor::pipeline_layout::RuntimePipelineDesc[][src]

pub struct RuntimePipelineDesc { /* fields omitted */ }

Runtime description of a pipeline layout.

Methods

impl RuntimePipelineDesc
[src]

Builds a new RuntimePipelineDesc from the descriptors and push constants descriptions.

Trait Implementations

impl Debug for RuntimePipelineDesc
[src]

Formats the value using the given formatter. Read more

impl Clone for RuntimePipelineDesc
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PipelineLayoutDesc for RuntimePipelineDesc
[src]

Returns the number of sets in the layout. Includes possibly empty sets. Read more

Returns the number of descriptors in the set. Includes possibly empty descriptors. Read more

Returns the descriptor for the given binding of the given set. Read more

Returns the number of push constant ranges of the layout.

Returns a description of the given push constants range. Read more

If the PipelineLayoutDesc implementation is able to provide an existing UnsafeDescriptorSetLayout for a given set, it can do so by returning it here. Read more

Builds the union of this layout and another.

Checks whether this description fulfills the device limits requirements.

Turns the layout description into a PipelineLayout object that can be used by Vulkan. Read more

Auto Trait Implementations