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

pub struct UnsafeDescriptorSet { /* fields omitted */ }

Low-level descriptor set.

Contrary to most other objects in this library, this one doesn't free itself automatically and doesn't hold the pool or the device it is associated to. Instead it is an object meant to be used with the UnsafeDescriptorPool.

Methods

impl UnsafeDescriptorSet
[src]

Modifies a descriptor set. Doesn't check that the writes or copies are correct, and doesn't check whether the descriptor set is in use.

Important: You must ensure that the UnsafeDescriptorSetLayout object is alive before updating a descriptor set.

Safety

  • The Device must be the device the pool of this set was created with.
  • The UnsafeDescriptorSetLayout object this set was created with must be alive.
  • Doesn't verify that the things you write in the descriptor set match its layout.
  • Doesn't keep the resources alive. You have to do that yourself.
  • Updating a descriptor set obeys synchronization rules that aren't checked here. Once a command buffer contains a pointer/reference to a descriptor set, it is illegal to write to it.

Trait Implementations

impl VulkanObject for UnsafeDescriptorSet
[src]

The type of the object.

TYPE: DebugReportObjectTypeEXT = vk::DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT

The DebugReportObjectTypeEXT of the internal Vulkan handle.

Returns a reference to the object.

impl Debug for UnsafeDescriptorSet
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations