Struct voodoo::DescriptorPool [] [src]

pub struct DescriptorPool { /* fields omitted */ }

A descriptor pool.

Destruction

Dropping this DescriptorPool will cause Device::destroy_descriptor_pool to be called, automatically releasing any resources associated with it.

Methods

impl DescriptorPool
[src]

[src]

Returns a new DescriptorPoolBuilder.

[src]

Returns this object's handle.

[src]

Returns a reference to the associated device.

[src]

Updates descriptor sets.

[src]

Updates the contents of a descriptor set object.

https://www.khronos.org/registry/vulkan/specs/1.0/man/html/vkUpdateDescriptorSets.html

Trait Implementations

impl Debug for DescriptorPool
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescriptorPool
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'d> Handle for &'d DescriptorPool
[src]

[src]

Auto Trait Implementations