gfx_hal::pso

Type Alias StencilValues

Source
pub type StencilValues = State<Sided<StencilValue>>;
Expand description

Pair of stencil values that could be either baked into a graphics pipeline or provided dynamically.

Aliased Type§

enum StencilValues {
    Static(Sided<u32>),
    Dynamic,
}

Variants§

§

Static(Sided<u32>)

Static state that cannot be altered.

§

Dynamic

Dynamic state set through a command buffer.