pub type ResolvedVertexState<'a> = VertexState<'a, Arc<ShaderModule>>;
Expand description
cbindgen:ignore
Aliased Type§
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.