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, [Option<VertexBufferLayout<'a>>]>,
}Fields§
§stage: ProgrammableStageDescriptor<'a, Arc<ShaderModule>>The compiled vertex stage and its entry point.
buffers: Cow<'a, [Option<VertexBufferLayout<'a>>]>The format of any vertex buffers used with this pipeline.