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

pub struct EmptyPipelineDesc;

Description of an empty pipeline layout.

Example

use vulkano::descriptor::pipeline_layout::EmptyPipelineDesc;
use vulkano::descriptor::pipeline_layout::PipelineLayoutDesc;

let pipeline_layout = EmptyPipelineDesc.build(device.clone()).unwrap();

Trait Implementations

impl Debug for EmptyPipelineDesc
[src]

Formats the value using the given formatter. Read more

impl Copy for EmptyPipelineDesc
[src]

impl Clone for EmptyPipelineDesc
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PipelineLayoutDesc for EmptyPipelineDesc
[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