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

pub struct UnsafeDescriptorSet { /* fields omitted */ }

Low-level descriptor set.

Methods

impl UnsafeDescriptorSet
[src]

See the docs of uninitialized().

Builds a new descriptor set.

Panic

  • Panics if the pool and the layout were not created from the same Device.
  • Panics if the device or host ran out of memory.

Modifies a descriptor set without checking that the writes are correct.

Safety

  • Doesn't verify that the things you write in the descriptor set match its layout.

Returns the layout used to create this descriptor set.

Trait Implementations

impl VulkanObject for UnsafeDescriptorSet
[src]

The type of the object.

Returns a reference to the object.

impl Drop for UnsafeDescriptorSet
[src]

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