Enum rafx_api::RafxDescriptorSetArray [−][src]
pub enum RafxDescriptorSetArray { Empty(RafxDescriptorSetArrayEmpty), }
Expand description
An array of descriptor sets. These are expected to be pooled and reused.
Managing descriptor sets can be challenging and there are many strategies that may be used. So
a RafxDescriptorSetArray
is intended to be allocated in blocks and pooled. This allows
downstream code to provide more fine-grained allocation strategies appropriate to their needs.
Higher level crates in rafx-framework provide ref-counted descriptor sets and pooling.
Once a RafxDescriptorSetArray is allocated, depending on the backend, it may remain allocated for the duration of the API object, even if the descriptor set array is dropped. So rather than drop them, pool and reuse them.
Descriptor sets are like pointers to GPU memory. A command buffer can bind a descriptor set, meaning that other command may access resources that the descriptor set references.
Once a command buffer using a descriptor set has been submitted, it must not be modified until the command buffer is finished executing. Fine-grained synchronization primitives allow this restriction to be loosened.
Using an incorrectly configured descriptor set can result in undefined behavior. In practice, this can include GPU hangs, driver crashes, and kernel panics.
Variants
Implementations
Create a lightweight, opaque pointer to a particular set in the array. This pointer can only be used for binding the given set in a command buffer.
Get the root signature that this descriptor set is created from
pub fn update_descriptor_set(
&mut self,
params: &[RafxDescriptorUpdate<'_>]
) -> RafxResult<()>
pub fn update_descriptor_set(
&mut self,
params: &[RafxDescriptorUpdate<'_>]
) -> RafxResult<()>
Update one or more descriptor sets with new values. This is the same as calling queue_descriptor_set_update, followed by flush_descriptor_set_updates
pub fn queue_descriptor_set_update(
&mut self,
update: &RafxDescriptorUpdate<'_>
) -> RafxResult<()>
pub fn queue_descriptor_set_update(
&mut self,
update: &RafxDescriptorUpdate<'_>
) -> RafxResult<()>
Update a CPU-only copy of the descriptor set, but does not apply the write to the descriptor set until flush_descriptor_set_updates() is called.
The main reason for allowing queueing/flushing in separate calls is to help calling code avoid borrow-checking difficulties.
Flush all queued descriptor set writes
Get the underlying metal API object. This provides access to any internally created metal objects.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RafxDescriptorSetArray
impl Send for RafxDescriptorSetArray
impl Sync for RafxDescriptorSetArray
impl Unpin for RafxDescriptorSetArray
impl UnwindSafe for RafxDescriptorSetArray
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more