Struct gfx::pso::Descriptor []

pub struct Descriptor {
    pub primitive: Primitive,
    pub rasterizer: Rasterizer,
    pub scissor: bool,
    pub attributes: [Option<(Element<Format>, u8)>; 16],
    pub color_targets: [Option<(Format, ColorInfo)>; 4],
    pub depth_stencil: Option<(SurfaceType, DepthStencilInfo)>,
}

All the information surrounding a shader program that is required for PSO creation, including the formats of vertex buffers and pixel targets;

Fields

Type of the primitive

Rasterizer setup

Enable scissor test

Vertex attributes

Render target views (RTV)

Depth stencil view (DSV)

Methods

impl Descriptor

Create a new empty PSO descriptor.

Trait Implementations

impl Clone for Descriptor

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Descriptor

impl Debug for Descriptor

Formats the value using the given formatter.

impl Eq for Descriptor

impl Hash for Descriptor

impl PartialEq<Descriptor> for Descriptor

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.