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

pub struct BufferlessVertices {
    pub vertices: usize,
    pub instances: usize,
}

Value to be passed as the vertex source for bufferless draw commands.

Note that the concrete type of the graphics pipeline using BufferlessDefinition must be visible to the command buffer builder for this to be usable.

Fields

Trait Implementations

impl VertexSource<BufferlessVertices> for BufferlessDefinition
[src]

Checks and returns the list of buffers with offsets, number of vertices and number of instances.

Auto Trait Implementations