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

pub struct UnsafePipelineLayout {
    // some fields omitted
}

Low-level struct that represents the layout of the resources available to your shaders.

Despite its name, this type is technically not unsafe. However it serves the same purpose in the API as other types whose names start with Unsafe.

Methods

impl UnsafePipelineLayout
[src]

Creates a new UnsafePipelineLayout.

Panic

Panics if one of the UnsafeDescriptorSetLayout was not created with device.

Returns the UnsafeDescriptorSetLayout object of the specified set index.

Returns None if out of range.

Returns the device used to create this pipeline layout.

Trait Implementations

impl VulkanObject for UnsafePipelineLayout
[src]

The type of the object.

Returns a reference to the object.

impl Drop for UnsafePipelineLayout
[src]

A method called when the value goes out of scope. Read more