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

pub struct DescriptorPool { /* fields omitted */ }

Pool from which descriptor sets are allocated from.

A pool has a maximum number of descriptor sets and a maximum number of descriptors (one value per descriptor type) it can allocate.

Methods

impl DescriptorPool
[src]

See the docs of new().

Initializes a new pool.

Panic

  • Panics if the device or host ran out of memory.

Returns the device this pool was created from.

Trait Implementations

impl SynchronizedVulkanObject for DescriptorPool
[src]

The type of the object.

Returns a reference to the object.

impl Drop for DescriptorPool
[src]

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