#[repr(C)]pub struct IndirectExecutionSetShaderLayoutInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub set_layout_count: u32,
pub p_set_layouts: *const DescriptorSetLayout,
}Expand description
VkIndirectExecutionSetShaderLayoutInfoEXT
Provided by VK_EXT_device_generated_commands.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_INDIRECT_EXECUTION_SET_SHADER_LAYOUT_INFO_EXT.
p_next: *const c_voidOptional, may be null.
set_layout_count: u32Length of p_set_layouts.
p_set_layouts: *const DescriptorSetLayoutOptional, may be null.
Implementations§
Source§impl IndirectExecutionSetShaderLayoutInfoEXT
impl IndirectExecutionSetShaderLayoutInfoEXT
Sourcepub fn builder<'a>() -> IndirectExecutionSetShaderLayoutInfoEXTBuilder<'a>
pub fn builder<'a>() -> IndirectExecutionSetShaderLayoutInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for IndirectExecutionSetShaderLayoutInfoEXT
impl Clone for IndirectExecutionSetShaderLayoutInfoEXT
Source§fn clone(&self) -> IndirectExecutionSetShaderLayoutInfoEXT
fn clone(&self) -> IndirectExecutionSetShaderLayoutInfoEXT
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 moreSource§impl Default for IndirectExecutionSetShaderLayoutInfoEXT
impl Default for IndirectExecutionSetShaderLayoutInfoEXT
Source§fn default() -> IndirectExecutionSetShaderLayoutInfoEXT
fn default() -> IndirectExecutionSetShaderLayoutInfoEXT
Returns the “default value” for a type. Read more
impl Copy for IndirectExecutionSetShaderLayoutInfoEXT
Auto Trait Implementations§
impl Freeze for IndirectExecutionSetShaderLayoutInfoEXT
impl RefUnwindSafe for IndirectExecutionSetShaderLayoutInfoEXT
impl !Send for IndirectExecutionSetShaderLayoutInfoEXT
impl !Sync for IndirectExecutionSetShaderLayoutInfoEXT
impl Unpin for IndirectExecutionSetShaderLayoutInfoEXT
impl UnsafeUnpin for IndirectExecutionSetShaderLayoutInfoEXT
impl UnwindSafe for IndirectExecutionSetShaderLayoutInfoEXT
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