Struct pilka_incremental::ash::vk::GraphicsPipelineCreateInfo[]

#[repr(C)]pub struct GraphicsPipelineCreateInfo {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub flags: PipelineCreateFlags,
    pub stage_count: u32,
    pub p_stages: *const PipelineShaderStageCreateInfo,
    pub p_vertex_input_state: *const PipelineVertexInputStateCreateInfo,
    pub p_input_assembly_state: *const PipelineInputAssemblyStateCreateInfo,
    pub p_tessellation_state: *const PipelineTessellationStateCreateInfo,
    pub p_viewport_state: *const PipelineViewportStateCreateInfo,
    pub p_rasterization_state: *const PipelineRasterizationStateCreateInfo,
    pub p_multisample_state: *const PipelineMultisampleStateCreateInfo,
    pub p_depth_stencil_state: *const PipelineDepthStencilStateCreateInfo,
    pub p_color_blend_state: *const PipelineColorBlendStateCreateInfo,
    pub p_dynamic_state: *const PipelineDynamicStateCreateInfo,
    pub layout: PipelineLayout,
    pub render_pass: RenderPass,
    pub subpass: u32,
    pub base_pipeline_handle: Pipeline,
    pub base_pipeline_index: i32,
}

Fields

s_type: StructureTypep_next: *const c_voidflags: PipelineCreateFlagsstage_count: u32p_stages: *const PipelineShaderStageCreateInfop_vertex_input_state: *const PipelineVertexInputStateCreateInfop_input_assembly_state: *const PipelineInputAssemblyStateCreateInfop_tessellation_state: *const PipelineTessellationStateCreateInfop_viewport_state: *const PipelineViewportStateCreateInfop_rasterization_state: *const PipelineRasterizationStateCreateInfop_multisample_state: *const PipelineMultisampleStateCreateInfop_depth_stencil_state: *const PipelineDepthStencilStateCreateInfop_color_blend_state: *const PipelineColorBlendStateCreateInfop_dynamic_state: *const PipelineDynamicStateCreateInfolayout: PipelineLayoutrender_pass: RenderPasssubpass: u32base_pipeline_handle: Pipelinebase_pipeline_index: i32

Implementations

impl GraphicsPipelineCreateInfo

Trait Implementations

impl Clone for GraphicsPipelineCreateInfo

impl Copy for GraphicsPipelineCreateInfo

impl Debug for GraphicsPipelineCreateInfo

impl Default for GraphicsPipelineCreateInfo

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.