[−][src]Struct vulkano::descriptor::descriptor_set::PersistentDescriptorSetBuilder
Prototype of a PersistentDescriptorSet
.
The template parameter L
is the pipeline layout to use, and the template parameter R
is
an unspecified type that represents the list of resources.
See the docs of PersistentDescriptorSet
for an example.
Methods
impl<L, R> PersistentDescriptorSetBuilder<L, R> where
L: PipelineLayoutAbstract,
[src]
L: PipelineLayoutAbstract,
pub fn build(
self
) -> Result<PersistentDescriptorSet<L, R, StdDescriptorPoolAlloc>, PersistentDescriptorSetBuildError>
[src]
self
) -> Result<PersistentDescriptorSet<L, R, StdDescriptorPoolAlloc>, PersistentDescriptorSetBuildError>
Builds a PersistentDescriptorSet
from the builder.
pub fn build_with_pool<P: ?Sized>(
self,
pool: &mut P
) -> Result<PersistentDescriptorSet<L, R, P::Alloc>, PersistentDescriptorSetBuildError> where
P: DescriptorPool,
[src]
self,
pool: &mut P
) -> Result<PersistentDescriptorSet<L, R, P::Alloc>, PersistentDescriptorSetBuildError> where
P: DescriptorPool,
Builds a PersistentDescriptorSet
from the builder.
Panic
Panics if the pool doesn't have the same device as the pipeline layout.
pub fn enter_array(
self
) -> Result<PersistentDescriptorSetBuilderArray<L, R>, PersistentDescriptorSetError>
[src]
self
) -> Result<PersistentDescriptorSetBuilderArray<L, R>, PersistentDescriptorSetError>
Call this function if the next element of the set is an array in order to set the value of each element.
Returns an error if the descriptor is empty.
This function can be called even if the descriptor isn't an array, and it is valid to enter the "array", add one element, then leave.
pub fn add_empty(
self
) -> Result<PersistentDescriptorSetBuilder<L, R>, PersistentDescriptorSetError>
[src]
self
) -> Result<PersistentDescriptorSetBuilder<L, R>, PersistentDescriptorSetError>
Skips the current descriptor if it is empty.
pub fn add_buffer<T>(
self,
buffer: T
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetBuf<T>)>, PersistentDescriptorSetError> where
T: BufferAccess,
[src]
self,
buffer: T
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetBuf<T>)>, PersistentDescriptorSetError> where
T: BufferAccess,
Binds a buffer as the next descriptor.
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.
pub fn add_buffer_view<T>(
self,
view: T
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetBufView<T>)>, PersistentDescriptorSetError> where
T: BufferViewRef,
[src]
self,
view: T
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetBufView<T>)>, PersistentDescriptorSetError> where
T: BufferViewRef,
Binds a buffer view as the next descriptor.
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.
pub fn add_image<T>(
self,
image_view: T
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetImg<T>)>, PersistentDescriptorSetError> where
T: ImageViewAccess,
[src]
self,
image_view: T
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetImg<T>)>, PersistentDescriptorSetError> where
T: ImageViewAccess,
Binds an image view as the next descriptor.
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.
pub fn add_sampled_image<T>(
self,
image_view: T,
sampler: Arc<Sampler>
) -> Result<PersistentDescriptorSetBuilder<L, ((R, PersistentDescriptorSetImg<T>), PersistentDescriptorSetSampler)>, PersistentDescriptorSetError> where
T: ImageViewAccess,
[src]
self,
image_view: T,
sampler: Arc<Sampler>
) -> Result<PersistentDescriptorSetBuilder<L, ((R, PersistentDescriptorSetImg<T>), PersistentDescriptorSetSampler)>, PersistentDescriptorSetError> where
T: ImageViewAccess,
Binds an image view with a sampler as the next descriptor.
An error is returned if the image view isn't compatible with the descriptor.
Panic
Panics if the image view or the sampler doesn't have the same device as the pipeline layout.
pub fn add_sampler(
self,
sampler: Arc<Sampler>
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetSampler)>, PersistentDescriptorSetError>
[src]
self,
sampler: Arc<Sampler>
) -> Result<PersistentDescriptorSetBuilder<L, (R, PersistentDescriptorSetSampler)>, PersistentDescriptorSetError>
Binds a sampler as the next descriptor.
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.
Auto Trait Implementations
impl<L, R> Send for PersistentDescriptorSetBuilder<L, R> where
L: Send,
R: Send,
L: Send,
R: Send,
impl<L, R> Unpin for PersistentDescriptorSetBuilder<L, R> where
L: Unpin,
R: Unpin,
L: Unpin,
R: Unpin,
impl<L, R> Sync for PersistentDescriptorSetBuilder<L, R> where
L: Sync,
R: Sync,
L: Sync,
R: Sync,
impl<L, R> UnwindSafe for PersistentDescriptorSetBuilder<L, R> where
L: UnwindSafe,
R: UnwindSafe,
L: UnwindSafe,
R: UnwindSafe,
impl<L, R> RefUnwindSafe for PersistentDescriptorSetBuilder<L, R> where
L: RefUnwindSafe,
R: RefUnwindSafe,
L: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations
impl<T> Content for T
[src]
fn ref_from_ptr(*mut c_void, usize) -> Option<*mut T>
[src]
fn is_size_suitable(usize) -> bool
[src]
fn indiv_size() -> usize
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,