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

Empty

Tuple Fields of Empty

0: RafxDescriptorSetArrayEmpty

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

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

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

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

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

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

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.