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

pub struct PipelineLayout<L> { /* fields omitted */ }

Wrapper around the PipelineLayout Vulkan object. Describes to the Vulkan implementation the descriptor sets and push constants available to your shaders

Methods

impl<L> PipelineLayout<L> where
    L: PipelineLayoutDesc
[src]

Creates a new PipelineLayout.

Panic

  • Panics if one of the layout returned by provided_set_layout() belongs to a different device than the one passed as parameter.

impl<L> PipelineLayout<L> where
    L: PipelineLayoutDesc
[src]

Returns the description of the pipeline layout.

Trait Implementations

impl<D> PipelineLayoutAbstract for PipelineLayout<D> where
    D: PipelineLayoutDesc
[src]

Returns an opaque object that allows internal access to the pipeline layout. Read more

Returns the UnsafeDescriptorSetLayout object of the specified set index. Read more

impl<D> PipelineLayoutDesc for PipelineLayout<D> where
    D: PipelineLayoutDesc
[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

impl<D> DeviceOwned for PipelineLayout<D>
[src]

Returns the device that owns Self.

impl<D> Debug for PipelineLayout<D> where
    D: Debug
[src]

Formats the value using the given formatter. Read more

impl<L> Drop for PipelineLayout<L>
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl<L> Send for PipelineLayout<L> where
    L: Send

impl<L> Sync for PipelineLayout<L> where
    L: Sync