[][src]Struct 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

Methods

impl GraphicsPipelineCreateInfo[src]

Trait Implementations

impl Copy for GraphicsPipelineCreateInfo[src]

impl Clone for GraphicsPipelineCreateInfo[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for GraphicsPipelineCreateInfo[src]

impl Debug for GraphicsPipelineCreateInfo[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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