Struct vulkano::pipeline::vertex::VertexMemberInfo [] [src]

pub struct VertexMemberInfo {
    pub offset: usize,
    pub ty: VertexMemberTy,
    pub array_size: usize,
}

Information about a member of a vertex struct.

Fields

Offset of the member in bytes from the start of the struct.

Type of data. This is used to check that the interface is matching.

Number of consecutive elements of that type.