#[repr(C)]pub struct GraphicsPipelineShaderGroupsCreateInfoNV {
pub s_type: StructureType,
pub p_next: *const c_void,
pub group_count: u32,
pub p_groups: *const GraphicsShaderGroupCreateInfoNV,
pub pipeline_count: u32,
pub p_pipelines: *const Pipeline,
}Expand description
VkGraphicsPipelineShaderGroupsCreateInfoNV
Provided by VK_NV_device_generated_commands.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_SHADER_GROUPS_CREATE_INFO_NV.
p_next: *const c_voidOptional, may be null.
group_count: u32Length of p_groups.
p_groups: *const GraphicsShaderGroupCreateInfoNV§pipeline_count: u32Length of p_pipelines.
p_pipelines: *const PipelineImplementations§
Source§impl GraphicsPipelineShaderGroupsCreateInfoNV
impl GraphicsPipelineShaderGroupsCreateInfoNV
Sourcepub fn builder<'a>() -> GraphicsPipelineShaderGroupsCreateInfoNVBuilder<'a>
pub fn builder<'a>() -> GraphicsPipelineShaderGroupsCreateInfoNVBuilder<'a>
Returns a builder for this struct with sType pre-filled.
Trait Implementations§
Source§impl Clone for GraphicsPipelineShaderGroupsCreateInfoNV
impl Clone for GraphicsPipelineShaderGroupsCreateInfoNV
Source§fn clone(&self) -> GraphicsPipelineShaderGroupsCreateInfoNV
fn clone(&self) -> GraphicsPipelineShaderGroupsCreateInfoNV
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 GraphicsPipelineShaderGroupsCreateInfoNV
impl ExtendsGraphicsPipelineCreateInfo for GraphicsPipelineShaderGroupsCreateInfoNV
Auto Trait Implementations§
impl Freeze for GraphicsPipelineShaderGroupsCreateInfoNV
impl RefUnwindSafe for GraphicsPipelineShaderGroupsCreateInfoNV
impl !Send for GraphicsPipelineShaderGroupsCreateInfoNV
impl !Sync for GraphicsPipelineShaderGroupsCreateInfoNV
impl Unpin for GraphicsPipelineShaderGroupsCreateInfoNV
impl UnsafeUnpin for GraphicsPipelineShaderGroupsCreateInfoNV
impl UnwindSafe for GraphicsPipelineShaderGroupsCreateInfoNV
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