ResolvedVertexState

Type Alias ResolvedVertexState 

Source
pub type ResolvedVertexState<'a> = VertexState<'a, Arc<ShaderModule>>;
Expand description

cbindgen:ignore

Aliased Type§

pub struct ResolvedVertexState<'a> {
    pub stage: ProgrammableStageDescriptor<'a, Arc<ShaderModule>>,
    pub buffers: Cow<'a, [VertexBufferLayout<'a>]>,
}

Fields§

§stage: ProgrammableStageDescriptor<'a, Arc<ShaderModule>>

The compiled vertex stage and its entry point.

§buffers: Cow<'a, [VertexBufferLayout<'a>]>

The format of any vertex buffers used with this pipeline.

Trait Implementations§

Source§

impl<'a> IntoTrace for ResolvedVertexState<'a>

Available on crate feature trace and (crate features trace or replay) only.
Source§

type Output = VertexState<'a, PointerId<ShaderModule>>

Source§

fn into_trace(self) -> Self::Output

Source§

fn to_trace(&self) -> Self::Output
where Self: Sized + Clone,