#[repr(C)]pub struct SetDescriptorBufferOffsetsInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub stage_flags: ShaderStageFlags,
pub layout: PipelineLayout,
pub first_set: u32,
pub set_count: u32,
pub p_buffer_indices: *const u32,
pub p_offsets: *const u64,
}Expand description
VkSetDescriptorBufferOffsetsInfoEXT
Provided by VK_KHR_maintenance6.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SET_DESCRIPTOR_BUFFER_OFFSETS_INFO_EXT.
p_next: *const c_voidOptional, may be null.
stage_flags: ShaderStageFlags§layout: PipelineLayout§first_set: u32§set_count: u32Length of p_offsets.
p_buffer_indices: *const u32§p_offsets: *const u64Implementations§
Source§impl SetDescriptorBufferOffsetsInfoEXT
impl SetDescriptorBufferOffsetsInfoEXT
Sourcepub fn builder<'a>() -> SetDescriptorBufferOffsetsInfoEXTBuilder<'a>
pub fn builder<'a>() -> SetDescriptorBufferOffsetsInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for SetDescriptorBufferOffsetsInfoEXT
impl Clone for SetDescriptorBufferOffsetsInfoEXT
Source§fn clone(&self) -> SetDescriptorBufferOffsetsInfoEXT
fn clone(&self) -> SetDescriptorBufferOffsetsInfoEXT
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SetDescriptorBufferOffsetsInfoEXT
Auto Trait Implementations§
impl Freeze for SetDescriptorBufferOffsetsInfoEXT
impl RefUnwindSafe for SetDescriptorBufferOffsetsInfoEXT
impl !Send for SetDescriptorBufferOffsetsInfoEXT
impl !Sync for SetDescriptorBufferOffsetsInfoEXT
impl Unpin for SetDescriptorBufferOffsetsInfoEXT
impl UnsafeUnpin for SetDescriptorBufferOffsetsInfoEXT
impl UnwindSafe for SetDescriptorBufferOffsetsInfoEXT
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more