Struct vulkano::pipeline::GraphicsPipelineBuilder [] [src]

pub struct GraphicsPipelineBuilder<'a, Vdef, Vsp, Vi, Vo, Vl, Tcs, Tci, Tco, Tcl, Tes, Tei, Teo, Tel, Gs, Gi, Go, Gl, Fs, Fi, Fo, Fl, Rp> { /* fields omitted */ }

Prototype for a GraphicsPipeline.

Methods

impl<'a, Vdef, Vsp, Vi, Vo, Vl, Tcs, Tci, Tco, Tcl, Tes, Tei, Teo, Tel, Gs, Gi, Go, Gl, Fs, Fi, Fo, Fl, Rp> GraphicsPipelineBuilder<'a, Vdef, Vsp, Vi, Vo, Vl, Tcs, Tci, Tco, Tcl, Tes, Tei, Teo, Tel, Gs, Gi, Go, Gl, Fs, Fi, Fo, Fl, Rp> where
    Vdef: VertexDefinition<Vi>,
    Vl: PipelineLayoutDescNames + Clone + 'static + Send + Sync,
    Fl: PipelineLayoutDescNames + Clone + 'static + Send + Sync,
    Tcl: PipelineLayoutDescNames + Clone + 'static + Send + Sync,
    Tel: PipelineLayoutDescNames + Clone + 'static + Send + Sync,
    Gl: PipelineLayoutDescNames + Clone + 'static + Send + Sync,
    Tci: ShaderInterfaceDefMatch<Vo>,
    Tei: ShaderInterfaceDefMatch<Tco>,
    Gi: ShaderInterfaceDefMatch<Teo> + ShaderInterfaceDefMatch<Vo>,
    Vo: ShaderInterfaceDef,
    Tco: ShaderInterfaceDef,
    Teo: ShaderInterfaceDef,
    Go: ShaderInterfaceDef,
    Fi: ShaderInterfaceDefMatch<Go> + ShaderInterfaceDefMatch<Teo> + ShaderInterfaceDefMatch<Vo>,
    Fo: ShaderInterfaceDef,
    Rp: RenderPassAbstract + RenderPassSubpassInterface<Fo>, 
[src]

Builds the graphics pipeline.

impl<'a, Vdef, Vsp, Vi, Vo, Vl, Tcs, Tci, Tco, Tcl, Tes, Tei, Teo, Tel, Gs, Gi, Go, Gl, Fs, Fi, Fo, Fl, Rp> GraphicsPipelineBuilder<'a, Vdef, Vsp, Vi, Vo, Vl, Tcs, Tci, Tco, Tcl, Tes, Tei, Teo, Tel, Gs, Gi, Go, Gl, Fs, Fi, Fo, Fl, Rp>
[src]

Sets the vertex input.

Sets the vertex input to a single vertex buffer.

You will most likely need to explicitely specify the template parameter to the type of a vertex.

Sets the vertex shader to use.

Sets whether primitive restart if enabled.

Sets the topology of the primitives that are expected by the pipeline.

Sets the topology of the primitives to a list of points.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::PointList).

Sets the topology of the primitives to a list of lines.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::LineList).

Sets the topology of the primitives to a line strip.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::LineStrip).

Sets the topology of the primitives to a list of triangles. Note that this is the default.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::TriangleList).

Sets the topology of the primitives to a triangle strip.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::TriangleStrip).

Sets the topology of the primitives to a fan of triangles.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::TriangleFan).

Sets the topology of the primitives to a list of lines with adjacency information.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::LineListWithAdjacency).

Sets the topology of the primitives to a line strip with adjacency information.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::LineStripWithAdjacency).

Sets the topology of the primitives to a list of triangles with adjacency information.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::TriangleListWithAdjacency).

Sets the topology of the primitives to a triangle strip with adjacency information`

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::TriangleStripWithAdjacency).

Sets the topology of the primitives to a list of patches. Can only be used and must be used with a tessellation shader.

Note: This is equivalent to self.primitive_topology(PrimitiveTopology::PatchList { vertices_per_patch }).

Sets the tessellation shaders to use.

Sets the tessellation shaders stage as disabled. This is the default.

Sets the geometry shader to use.

Sets the geometry shader stage as disabled. This is the default.

Sets the viewports to some value, and the scissor boxes to boxes that always cover the whole viewport.

Sets the characteristics of viewports and scissor boxes in advance.

Sets the scissor boxes to some values, and viewports to dynamic. The viewports will need to be set before drawing.

Sets the viewports to dynamic, and the scissor boxes to boxes that always cover the whole viewport. The viewports will need to be set before drawing.

Sets the viewports to some values, and scissor boxes to dynamic. The scissor boxes will need to be set before drawing.

Sets the viewports and scissor boxes to dynamic. They will both need to be set before drawing.

If true, then the depth value of the vertices will be clamped to the range [0.0 ; 1.0]. If false, fragments whose depth is outside of this range will be discarded before the fragment shader even runs.

Sets the front-facing faces to couner-clockwise faces. This is the default.

Triangles whose vertices are oriented counter-clockwise on the screen will be considered as facing their front. Otherwise they will be considered as facing their back.

Sets the front-facing faces to clockwise faces.

Triangles whose vertices are oriented clockwise on the screen will be considered as facing their front. Otherwise they will be considered as facing their back.

Sets backface culling as disabled. This is the default.

Sets backface culling to front faces. The front faces (as chosen with the front_face_* methods) will be discarded by the GPU when drawing.

Sets backface culling to back faces. Faces that are not facing the front (as chosen with the front_face_* methods) will be discarded by the GPU when drawing.

Sets backface culling to both front and back faces. All the faces will be discarded.

Note: This option exists for the sake of completeness. It has no known practical usage.

Sets the polygon mode to "fill". This is the default.

Sets the polygon mode to "line". Triangles will each be turned into three lines.

Sets the polygon mode to "point". Triangles and lines will each be turned into three points.

Sets the width of the lines, if the GPU needs to draw lines. The default is 1.0.

Sets the width of the lines as dynamic, which means that you will need to set this value when drawing.

Sets the fragment shader to use.

The fragment shader is run once for each pixel that is covered by each primitive.

Sets the depth/stencil configuration. This function may be removed in the future.

Sets the depth/stencil tests as disabled.

Note: This is a shortcut for all the other depth_* and depth_stencil_* methods of the builder.

Sets the depth/stencil tests as a simple depth test and no stencil test.

Note: This is a shortcut for setting the depth test to Less, the depth write Into true and disable the stencil test.

Sets whether the depth buffer will be written.

Each fragment shader output will have its value directly written to the framebuffer attachment. This is the default.

Sets the logic operation as disabled. This is the default.

Sets the blend constant. The default is [0.0, 0.0, 0.0, 0.0].

The blend constant is used for some blending calculations. It is irrelevant otherwise.

Sets the blend constant value as dynamic. Its value will need to be set before drawing.

The blend constant is used for some blending calculations. It is irrelevant otherwise.

Sets the render pass subpass to use.