#[repr(C)]pub struct IndirectCommandsLayoutCreateInfoEXT {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: IndirectCommandsLayoutUsageFlagsEXT,
pub shader_stages: ShaderStageFlags,
pub indirect_stride: u32,
pub pipeline_layout: PipelineLayout,
pub token_count: u32,
pub p_tokens: *const IndirectCommandsLayoutTokenEXT,
}Expand description
VkIndirectCommandsLayoutCreateInfoEXT
Provided by VK_EXT_device_generated_commands.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_EXT.
p_next: *const c_voidOptional, may be null.
flags: IndirectCommandsLayoutUsageFlagsEXT§shader_stages: ShaderStageFlags§indirect_stride: u32§pipeline_layout: PipelineLayout§token_count: u32Length of p_tokens.
p_tokens: *const IndirectCommandsLayoutTokenEXTImplementations§
Source§impl IndirectCommandsLayoutCreateInfoEXT
impl IndirectCommandsLayoutCreateInfoEXT
Sourcepub fn builder<'a>() -> IndirectCommandsLayoutCreateInfoEXTBuilder<'a>
pub fn builder<'a>() -> IndirectCommandsLayoutCreateInfoEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for IndirectCommandsLayoutCreateInfoEXT
impl Clone for IndirectCommandsLayoutCreateInfoEXT
Source§fn clone(&self) -> IndirectCommandsLayoutCreateInfoEXT
fn clone(&self) -> IndirectCommandsLayoutCreateInfoEXT
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 IndirectCommandsLayoutCreateInfoEXT
Auto Trait Implementations§
impl Freeze for IndirectCommandsLayoutCreateInfoEXT
impl RefUnwindSafe for IndirectCommandsLayoutCreateInfoEXT
impl !Send for IndirectCommandsLayoutCreateInfoEXT
impl !Sync for IndirectCommandsLayoutCreateInfoEXT
impl Unpin for IndirectCommandsLayoutCreateInfoEXT
impl UnsafeUnpin for IndirectCommandsLayoutCreateInfoEXT
impl UnwindSafe for IndirectCommandsLayoutCreateInfoEXT
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