Struct vulkano::descriptor::descriptor_set::PersistentDescriptorSetBuilderArray [] [src]

pub struct PersistentDescriptorSetBuilderArray<L, R> { /* fields omitted */ }

Same as PersistentDescriptorSetBuilder, but we're in an array.

Methods

impl<L, R> PersistentDescriptorSetBuilderArray<L, R> where
    L: PipelineLayoutAbstract
[src]

[src]

Leaves the array. Call this once you added all the elements of the array.

[src]

Binds a buffer as the next element in the array.

An error is returned if the buffer isn't compatible with the descriptor.

Panic

Panics if the buffer doesn't have the same device as the pipeline layout.

[src]

Binds a buffer view as the next element in the array.

An error is returned if the buffer isn't compatible with the descriptor.

Panic

Panics if the buffer view doesn't have the same device as the pipeline layout.

[src]

Binds an image view as the next element in the array.

An error is returned if the image view isn't compatible with the descriptor.

Panic

Panics if the image view doesn't have the same device as the pipeline layout.

[src]

Binds an image view with a sampler as the next element in the array.

An error is returned if the image view isn't compatible with the descriptor.

Panic

Panics if the image or the sampler doesn't have the same device as the pipeline layout.

[src]

Binds a sampler as the next element in the array.

An error is returned if the sampler isn't compatible with the descriptor.

Panic

Panics if the sampler doesn't have the same device as the pipeline layout.